artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
417db3c
)
convert to ansi function decl
author
jsg
<jsg@openbsd.org>
Thu, 7 Sep 2023 06:32:24 +0000
(06:32 +0000)
committer
jsg
<jsg@openbsd.org>
Thu, 7 Sep 2023 06:32:24 +0000
(06:32 +0000)
lib/libm/src/w_drem.c
patch
|
blob
|
history
diff --git
a/lib/libm/src/w_drem.c
b/lib/libm/src/w_drem.c
index
7f50493
..
5038f5c
100644
(file)
--- a/
lib/libm/src/w_drem.c
+++ b/
lib/libm/src/w_drem.c
@@
-8,8
+8,7
@@
#include <math.h>
double
-drem(x, y)
- double x, y;
+drem(double x, double y)
{
return remainder(x, y);
}