Loading...
--- Libc/Libc-1725.40.4/stdlib/FreeBSD/atoi.c
+++ Libc/Libc-825.26/stdlib/FreeBSD/atoi.c
@@ -38,13 +38,16 @@
#include <stdlib.h>
int
-atoi(const char *str)
+atoi(str)
+ const char *str;
{
return (int)strtol_l(str, (char **)NULL, 10, __current_locale());
}
int
-atoi_l(const char *str, locale_t loc)
+atoi_l(str, loc)
+ const char *str;
+ locale_t loc;
{
/* no need to call NORMALIZE_LOCALE(loc) because strtol_l will */
return (int)strtol_l(str, (char **)NULL, 10, loc);