convert to ansi function decl
authorjsg <jsg@openbsd.org>
Thu, 7 Sep 2023 06:32:24 +0000 (06:32 +0000)
committerjsg <jsg@openbsd.org>
Thu, 7 Sep 2023 06:32:24 +0000 (06:32 +0000)
lib/libm/src/w_drem.c

index 7f50493..5038f5c 100644 (file)
@@ -8,8 +8,7 @@
 #include <math.h>
 
 double
-drem(x, y)
-       double x, y;
+drem(double x, double y)
 {
        return remainder(x, y);
 }