Loading...
stdlib/l64a.c Libc-1725.40.4 Libc-262
--- Libc/Libc-1725.40.4/stdlib/l64a.c
+++ Libc/Libc-262/stdlib/l64a.c
@@ -11,26 +11,18 @@
 #include <stdlib.h>
 
 char *
-#ifdef __LP64__
-l64a(long v)
-#else /* !__LP64__ */
-l64a(long value)
-#endif /* __LP64__ */
+l64a(value)
+	long value;
 {
 	static char buf[8];
-#ifdef __LP64__
-	int value = v;
-#endif /* __LP64__ */
 	char *s = buf;
 	int digit;
 	int i;
 
-#ifndef __LP64__
 	if (value < 0) {
 		errno = EINVAL;
 		return(NULL);
 	}
-#endif /* __LP64__ */
 
 	for (i = 0; value != 0 && i < 6; i++) {
 		digit = value & 0x3f;