]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/stub/s_exp2f.c
Update.
[thirdparty/glibc.git] / sysdeps / stub / s_exp2f.c
CommitLineData
5929563f
UD
1#include <math.h>
2#include <stdio.h>
d705269e 3#include <errno.h>
5929563f
UD
4
5float
6__exp2f (float x)
7{
8 fputs ("__exp2f not implemented\n", stderr);
d705269e 9 __set_errno (ENOSYS);
5929563f
UD
10 return 0.0;
11}
12weak_alias (__exp2f, exp2f)
13
0413b54c 14stub_warning (exp2f)