Framework to test IFUNC implementations on target
[glibc.git] / math / e_fmodl.c
blobdbd361ebc9f47580cf0fce69b331c820982ac0ff
1 #include <math.h>
2 #include <stdio.h>
3 #include <errno.h>
5 long double
6 __ieee754_fmodl (long double x, long double y)
8 fputs ("__ieee754_fmodl not implemented\n", stderr);
9 __set_errno (ENOSYS);
10 return 0.0;
12 strong_alias (__ieee754_fmodl, __fmodl_finite)
14 stub_warning (fmodl)
15 #include <stub-tag.h>