Loading...
--- 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);
}
--- 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);
}