Code for handlig profiling of shared objects.
[glibc/history.git] / sysdeps / stub / s_exp2f.c
blob51b268c9e00adfc3b6b3309df90f21585f1869a9
1 #include <math.h>
2 #include <stdio.h>
3 #include <errno.h>
5 float
6 __exp2f (float x)
8 fputs ("__exp2f not implemented\n", stderr);
9 __set_errno (ENOSYS);
10 return 0.0;
12 weak_alias (__exp2f, exp2f)
14 stub_warning (exp2)