mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-21 18:30:20 +00:00
define strtol with __strol_internal
This commit is contained in:
parent
29fca40450
commit
d626de9474
@ -65,3 +65,8 @@ long int __strtol_internal (const char *nptr, char **endptr, int base, int group
|
|||||||
*endptr = (char*)nptr;
|
*endptr = (char*)nptr;
|
||||||
return sign * result;
|
return sign * result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
long int strtol(const char *nptr, char **endptr, int base)
|
||||||
|
{
|
||||||
|
return __strtol_internal(nptr, endptr, base, 0);
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user