Loading...
stdlib/FreeBSD/abs.c Libc-763.13 Libc-1669.0.4
--- Libc/Libc-763.13/stdlib/FreeBSD/abs.c
+++ Libc/Libc-1669.0.4/stdlib/FreeBSD/abs.c
@@ -36,8 +36,7 @@
 #include <stdlib.h>
 
 int
-abs(j)
-	int j;
+abs(int j)
 {
 	return(j < 0 ? -j : j);
 }