Update.
[glibc.git] / sysdeps / stub / s_exp2.c
bloba3d0906a3387f3c33d3ab6787daa14a8643a132c
1 #include <math.h>
2 #include <stdio.h>
4 double
5 __exp2 (double x)
7 fputs ("__exp2 not implemented\n", stderr);
8 return 0.0;
10 weak_alias (__exp2, exp2)
12 stub_warning (exp2)