diff options
Diffstat (limited to 'sysdeps/stub/s_exp2f.c')
-rw-r--r-- | sysdeps/stub/s_exp2f.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sysdeps/stub/s_exp2f.c b/sysdeps/stub/s_exp2f.c new file mode 100644 index 0000000000..5d6540e074 --- /dev/null +++ b/sysdeps/stub/s_exp2f.c @@ -0,0 +1,12 @@ +#include <math.h> +#include <stdio.h> + +float +__exp2f (float x) +{ + fputs ("__exp2f not implemented\n", stderr); + return 0.0; +} +weak_alias (__exp2f, exp2f) + +stub_warning (exp2) |