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