summaryrefslogtreecommitdiff
path: root/sysdeps/stub/s_exp2.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/stub/s_exp2.c')
-rw-r--r--sysdeps/stub/s_exp2.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/sysdeps/stub/s_exp2.c b/sysdeps/stub/s_exp2.c
new file mode 100644
index 0000000000..a3d0906a33
--- /dev/null
+++ b/sysdeps/stub/s_exp2.c
@@ -0,0 +1,12 @@
+#include <math.h>
+#include <stdio.h>
+
+double
+__exp2 (double x)
+{
+ fputs ("__exp2 not implemented\n", stderr);
+ return 0.0;
+}
+weak_alias (__exp2, exp2)
+
+stub_warning (exp2)