[T106][ZXW-22]7520V3SCV2.01.01.02P42U09_VEC_V0.8_AP_VEC origin source commit
Change-Id: Ic6e05d89ecd62fc34f82b23dcf306c93764aec4b
diff --git a/ap/libc/glibc/glibc-2.22/math/w_exp2.c b/ap/libc/glibc/glibc-2.22/math/w_exp2.c
new file mode 100644
index 0000000..ca17f9e
--- /dev/null
+++ b/ap/libc/glibc/glibc-2.22/math/w_exp2.c
@@ -0,0 +1,23 @@
+/*
+ * wrapper exp2(x)
+ */
+
+#include <math.h>
+#include <math_private.h>
+
+double
+__exp2 (double x)
+{
+ double z = __ieee754_exp2 (x);
+ if (__builtin_expect (!isfinite (z) || z == 0, 0)
+ && isfinite (x) && _LIB_VERSION != _IEEE_)
+ /* exp2 overflow: 44, exp2 underflow: 45 */
+ return __kernel_standard (x, x, 44 + !!signbit (x));
+
+ return z;
+}
+weak_alias (__exp2, exp2)
+#ifdef NO_LONG_DOUBLE
+strong_alias (__exp2, __exp2l)
+weak_alias (__exp2, exp2l)
+#endif