loongarch64: add new syscall numbers
[musl.git] / src / math / remainder.c
blob612155fedaa586f8f9f53651fef0df563e8574ef
1 #include <math.h>
3 double remainder(double x, double y)
5 int q;
6 return remquo(x, y, &q);
9 weak_alias(remainder, drem);