mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-03-03 07:29:23 +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) {
|
||||
_Static_assert(LONG_MAX == LONG_LONG_MAX, "need strtoll impl");
|
||||
return strtoll(s, endptr, base);
|
||||
return strtol(s, endptr, base);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue