Loading...
stdlib/FreeBSD/atof.c Libc-1725.40.4 Libc-825.25
--- Libc/Libc-1725.40.4/stdlib/FreeBSD/atof.c
+++ Libc/Libc-825.25/stdlib/FreeBSD/atof.c
@@ -38,13 +38,16 @@
 #include <stdlib.h>
 
 double
-atof(const char *ascii)
+atof(ascii)
+	const char *ascii;
 {
 	return strtod_l(ascii, (char **)NULL, __current_locale());
 }
 
 double
-atof_l(const char *ascii, locale_t loc)
+atof_l(ascii, loc)
+	const char *ascii;
+	locale_t loc;
 {
 	/* no need to call NORMALIZE_LOCALE(loc) because strtod_l will */
 	return strtod_l(ascii, (char **)NULL, loc);