]> sourceware.org Git - glibc.git/blame - math/e_log2l.c
Improve clog, clog10 handling of values with real or imaginary part 1 (bug 13629).
[glibc.git] / math / e_log2l.c
CommitLineData
e7fd8a39
UD
1#include <math.h>
2#include <stdio.h>
d705269e 3#include <errno.h>
e7fd8a39
UD
4
5long double
601d2942 6__ieee754_log2l (long double x)
e7fd8a39 7{
601d2942 8 fputs ("__ieee754_log2l not implemented\n", stderr);
d705269e 9 __set_errno (ENOSYS);
e7fd8a39
UD
10 return 0.0;
11}
0ac5ae23 12strong_alias (__ieee754_log2l, __log2l_finite)
e7fd8a39 13
5929563f 14stub_warning (log2l)
f2ea0f5b 15#include <stub-tag.h>
This page took 0.499172 seconds and 5 git commands to generate.