]> sourceware.org Git - glibc.git/blame - sysdeps/stub/e_j1l.c
Update.
[glibc.git] / sysdeps / stub / e_j1l.c
CommitLineData
cccda09f
UD
1#include <math.h>
2#include <stdio.h>
d705269e 3#include <errno.h>
cccda09f
UD
4
5long double
6__ieee754_j1l (long double x)
7{
8 fputs ("__ieee754_j1l not implemented\n", stderr);
d705269e 9 __set_errno (ENOSYS);
cccda09f
UD
10 return 0.0;
11}
12
13stub_warning (__ieee754_j1l)
11336c16
UD
14
15long double
16__ieee754_y1l (long double x)
17{
18 fputs ("__ieee754_y1l not implemented\n", stderr);
d705269e 19 __set_errno (ENOSYS);
11336c16
UD
20 return 0.0;
21}
22
23stub_warning (__ieee754_y1l)
This page took 0.040276 seconds and 5 git commands to generate.