mescc: Tinycc support: strtoull stub.
* mlibc/include/stdlib.h (strtoull): Declare. * mlibc/libc-mes+tcc.c (strtoull): Add stub.
This commit is contained in:
parent
c749bb5aa3
commit
ec335eef50
|
@ -41,6 +41,7 @@ void qsort (void *base, size_t nmemb, size_t size, int (*compar)(void const *, v
|
|||
void *realloc (void *p, size_t size);
|
||||
long strtol (char const *nptr, char **endptr, int base);
|
||||
unsigned long strtoul (char const *nptr, char **endptr, int base);
|
||||
unsigned long long strtoull (char const *nptr, char **endptr, int base);
|
||||
|
||||
#endif // !(__GNUC__ && POSIX)
|
||||
|
||||
|
|
|
@ -148,6 +148,12 @@ strtoul (char const *nptr, char **endptr, int base)
|
|||
return 0;
|
||||
}
|
||||
|
||||
unsigned long long
|
||||
strtoull (char const *nptr, char **endptr, int base)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
time_t time (time_t *tloc)
|
||||
{
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue