]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - math/w_fmodf_compat.c
Prefer new libm function wrappers for !LIBM_SVID_COMPAT.
[thirdparty/glibc.git] / math / w_fmodf_compat.c
index 88b64a24bd5882ed61c9ca82a31156632e1f1c0e..a2739d856ac92f1f0763f9f7b2945ae7dadf1b95 100644 (file)
@@ -20,6 +20,7 @@
 #include <math_private.h>
 #include <math-svid-compat.h>
 
+#if LIBM_SVID_COMPAT
 /* wrapper fmodf */
 float
 __fmodf (float x, float y)
@@ -32,3 +33,4 @@ __fmodf (float x, float y)
   return __ieee754_fmodf (x, y);
 }
 weak_alias (__fmodf, fmodf)
+#endif