]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - math/w_sqrtl_compat.c
Prefer new libm function wrappers for !LIBM_SVID_COMPAT.
[thirdparty/glibc.git] / math / w_sqrtl_compat.c
index 43e81acf0a9322b2462389dfe94a47b4ac7ec8b0..b0afd1171cf13db20b3db451ab70a9688dd50abb 100644 (file)
@@ -21,6 +21,7 @@
 #include <math-svid-compat.h>
 
 
+#if LIBM_SVID_COMPAT
 /* wrapper sqrtl */
 long double
 __sqrtl (long double x)
@@ -31,3 +32,4 @@ __sqrtl (long double x)
   return __ieee754_sqrtl (x);
 }
 weak_alias (__sqrtl, sqrtl)
+#endif