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