summaryrefslogtreecommitdiff
path: root/math/w_tgammaf_compat.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/w_tgammaf_compat.c')
-rw-r--r--math/w_tgammaf_compat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/w_tgammaf_compat.c b/math/w_tgammaf_compat.c
index e9ffddb796..ed509885ae 100644
--- a/math/w_tgammaf_compat.c
+++ b/math/w_tgammaf_compat.c
@@ -32,7 +32,7 @@ __tgammaf(float x)
if (x == (float)0.0)
/* tgammaf pole */
return __kernel_standard_f(x, x, 150);
- else if(__floorf(x)==x&&x<0.0f)
+ else if(floorf(x)==x&&x<0.0f)
/* tgammaf domain */
return __kernel_standard_f(x, x, 141);
else if (y == 0)