mirror of
https://github.com/vivier/EMILE.git
synced 2025-08-07 15:25:04 +00:00
define strtol with __strol_internal
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user