xref: /haiku/src/system/libroot/posix/musl/math/remainder.c (revision 8c78892580f132d10e624aef96f835df8d94bf19)
1 #include <math.h>
2 #include "libm.h"
3 
4 double remainder(double x, double y)
5 {
6 	int q;
7 	return remquo(x, y, &q);
8 }
9 
10 weak_alias(remainder, drem);
11