* mlibc/include/stdlib.h (strtoull): Declare.
* mlibc/libc-mes+tcc.c (strtoull): Add stub.
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)
return 0;
}
+unsigned long long
+strtoull (char const *nptr, char **endptr, int base)
+{
+ return 0;
+}
+
time_t time (time_t *tloc)
{
return 0;