mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-20 12:00:06 +00:00
17 lines
242 B
C
17 lines
242 B
C
|
/*
|
||
|
* drem() wrapper for remainder().
|
||
|
*
|
||
|
* Written by J.T. Conklin, <jtc@wimsey.com>
|
||
|
* Placed into the Public Domain, 1994.
|
||
|
*/
|
||
|
|
||
|
#include <math.h>
|
||
|
|
||
|
double
|
||
|
__drem(x, y)
|
||
|
double x, y;
|
||
|
{
|
||
|
return __remainder(x, y);
|
||
|
}
|
||
|
weak_alias (__drem, drem)
|