Initial import
This commit is contained in:
7
libc/math/drem.c
Normal file
7
libc/math/drem.c
Normal file
@@ -0,0 +1,7 @@
|
||||
#include "libc/math/math.h"
|
||||
|
||||
double drem(double x, double y)
|
||||
{
|
||||
int q;
|
||||
return remquo(x, y, &q);
|
||||
}
|
||||
Reference in New Issue
Block a user