mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-04 02:08:30 +00:00
Fix typo bug in strtoll (#245)
This commit is contained in:
parent
228fb7428b
commit
968474d291
1 changed files with 1 additions and 1 deletions
|
@ -34,5 +34,5 @@
|
||||||
*/
|
*/
|
||||||
long long strtoll(const char *s, char **endptr, int base) {
|
long long strtoll(const char *s, char **endptr, int base) {
|
||||||
_Static_assert(LONG_MAX == LONG_LONG_MAX, "need strtoll impl");
|
_Static_assert(LONG_MAX == LONG_LONG_MAX, "need strtoll impl");
|
||||||
return strtoll(s, endptr, base);
|
return strtol(s, endptr, base);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue