OpenLibm/src/w_drem.c
Viral B. Shah b0b27a0ff4 Replace math.h with openlibm.h
Remove man
2011-12-15 11:54:24 +05:30

16 lines
215 B
C

/*
* drem() wrapper for remainder().
*
* Written by J.T. Conklin, <jtc@wimsey.com>
* Placed into the Public Domain, 1994.
*/
#include <openlibm.h>
double
drem(x, y)
double x, y;
{
return remainder(x, y);
}