]> sourceware.org Git - glibc.git/blame - sysdeps/stub/s_log2l.c
Update.
[glibc.git] / sysdeps / stub / s_log2l.c
CommitLineData
e7fd8a39
UD
1#include <math.h>
2#include <stdio.h>
d705269e 3#include <errno.h>
e7fd8a39
UD
4
5long double
6__log2l (long double x)
7{
8 fputs ("__log2l not implemented\n", stderr);
d705269e 9 __set_errno (ENOSYS);
e7fd8a39
UD
10 return 0.0;
11}
5929563f 12weak_alias (__log2l, log2l)
e7fd8a39 13
5929563f 14stub_warning (log2l)
This page took 0.03372 seconds and 5 git commands to generate.