]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - math/w_logf_compat.c
Prefer new libm function wrappers for !LIBM_SVID_COMPAT.
[thirdparty/glibc.git] / math / w_logf_compat.c
index ac18b65c5e92198ffd1aa207999e886918fbb7c6..4423bd527aaa85889c26ff2e9724015c40519301 100644 (file)
@@ -22,6 +22,7 @@
 #include <math-svid-compat.h>
 
 
+#if LIBM_SVID_COMPAT
 /* wrapper logf(x) */
 float
 __logf (float x)
@@ -43,3 +44,4 @@ __logf (float x)
   return  __ieee754_logf (x);
 }
 weak_alias (__logf, logf)
+#endif