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