diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1994-08-19 09:40:01 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1994-08-19 09:40:01 +0000 |
| commit | 3a8617a83f16ffc9db4f96e1f0f21af94078e6b1 (patch) | |
| tree | ce0adf3fb8126ccab95db139d52164862e9f25ce /lib/msun/src/w_dremf.c | |
| parent | c6866b514fca36e8311604c298d999cde32aeb04 (diff) | |
Notes
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 000000000000..9f1de53567e2 --- /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); +} |
