]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - math/w_tgamma_template.c
Use floor functions not __floor functions in glibc libm.
[thirdparty/glibc.git] / math / w_tgamma_template.c
index 032f27a3f71c8f2955d62eefc9a59a08508b38c8..f570615d7b5c9313ccd72394e727c58de71eb782 100644 (file)
@@ -41,7 +41,7 @@ M_DECL_FUNC (__tgamma) (FLOAT x)
       if (x == 0)
        /* Pole error: tgamma(x=0).  */
        __set_errno (ERANGE);
-      else if (M_SUF (__floor) (x) == x && x < 0)
+      else if (M_SUF (floor) (x) == x && x < 0)
        /* Domain error: tgamma(integer x<0).  */
        __set_errno (EDOM);
       else