mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-08-05 17:30:27 +00:00
typo in strtoll causing recursion
This commit is contained in:
parent
1e5bd4d23e
commit
6a2f60de34
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
Add a link
Reference in a new issue