Loading...
stdlib/a64l.c Libc-262 Libc-1583.60.2
--- Libc/Libc-262/stdlib/a64l.c
+++ Libc/Libc-1583.60.2/stdlib/a64l.c
@@ -11,10 +11,9 @@
 #include <stdlib.h>
 
 long
-a64l(s)
-	const char *s;
+a64l(const char *s)
 {
-	long value, digit, shift;
+	int value, digit, shift;
 	int i;
 
 	if (s == NULL) {