#include #include #include #include #include #include "_stdlib.h" long long int strtoll(const char * restrict nptr, char ** restrict endptr, int base) { long long int ret = 0; long long int max = LLONG_MAX; long long int min = LLONG_MIN; SIGNAL_SAFE(0); ASSERT_NOOVERLAP(nptr, strlen(nptr), endptr, sizeof(*endptr)); #include "_strtoi.h" return ret; } /* STDC(199901) */