mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-21 03:29:49 +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;
|
||||
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