]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/generic/e_fmodl.c
(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[thirdparty/glibc.git] / sysdeps / generic / e_fmodl.c
CommitLineData
d41c6f61
UD
1#include <math.h>
2#include <stdio.h>
d705269e 3#include <errno.h>
d41c6f61
UD
4
5long double
6__ieee754_fmodl (long double x, long double y)
7{
8 fputs ("__ieee754_fmodl not implemented\n", stderr);
d705269e 9 __set_errno (ENOSYS);
d41c6f61
UD
10 return 0.0;
11}
12
6973fc01 13stub_warning (fmodl)
f2ea0f5b 14#include <stub-tag.h>