mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2025-01-01 06:23:39 +01:00
b0b27a0ff4
Remove man
15 lines
215 B
C
15 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);
|
|
}
|