diff options
Diffstat (limited to 'lib/msun/src/w_dremf.c')
-rw-r--r-- | lib/msun/src/w_dremf.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/msun/src/w_dremf.c b/lib/msun/src/w_dremf.c new file mode 100644 index 0000000..92079a9 --- /dev/null +++ b/lib/msun/src/w_dremf.c @@ -0,0 +1,16 @@ +/* + * dremf() wrapper for remainderf(). + * + * Written by J.T. Conklin, <jtc@wimsey.com> + * Placed into the Public Domain, 1994. + */ + +#include "math.h" +#include "math_private.h" + +float +dremf(x, y) + float x, y; +{ + return remainderf(x, y); +} |