< nwmcsween> nsz libm.h slow -> large
[libm] / src / math / remainderl.c
1 #include "libm.h"
2 #if LD64
3 long double remainderl(long double x, long double y)
4 {
5         return remainder(x, y);
6 }
7 #else
8 long double remainderl(long double x, long double y)
9 {
10         int q;
11         return remquol(x, y, &q);
12 }
13 #endif