Skip to content
Permalink
abfbdde177
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
20 lines (18 sloc) 328 Bytes
/*
* 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)
#ifdef NO_LONG_DOUBLE
strong_alias (__drem, __dreml)
weak_alias (__drem, dreml)
#endif