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