aboutsummaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorMarek Polacek <polacek@redhat.com>2012-03-03 22:54:18 +0100
committerMarek Polacek <polacek@redhat.com>2012-03-03 22:57:00 +0100
commitbc957d531c91b16b135e3f3d81506864166997f0 (patch)
tree96dcb21d0ec966caacd0d92b98c00458693ccb0c /math
parent6358490d55d0606bf5f2d48ed8b8f26d77364998 (diff)
downloadglibc-bc957d531c91b16b135e3f3d81506864166997f0.tar
glibc-bc957d531c91b16b135e3f3d81506864166997f0.tar.gz
glibc-bc957d531c91b16b135e3f3d81506864166997f0.tar.bz2
glibc-bc957d531c91b16b135e3f3d81506864166997f0.zip
Remove oldish __GNUC_PREREQ.
Diffstat (limited to 'math')
-rw-r--r--math/math_private.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/math/math_private.h b/math/math_private.h
index e4108d8f23..777762dd33 100644
--- a/math/math_private.h
+++ b/math/math_private.h
@@ -211,10 +211,8 @@ extern int __kernel_rem_pio2 (double*,double*,int,int,int, const int32_t*);
/* internal functions. */
extern double __copysign (double x, double __y);
-#if __GNUC_PREREQ (4, 0)
extern inline double __copysign (double x, double y)
{ return __builtin_copysign (x, y); }
-#endif
/* ieee style elementary float functions */
extern float __ieee754_sqrtf (float);
@@ -258,10 +256,8 @@ extern int __kernel_rem_pio2f (float*,float*,int,int,int, const int32_t*);
/* internal functions. */
extern float __copysignf (float x, float __y);
-#if __GNUC_PREREQ (4, 0)
extern inline float __copysignf (float x, float y)
{ return __builtin_copysignf (x, y); }
-#endif
/* ieee style elementary long double functions */
extern long double __ieee754_sqrtl (long double);
@@ -326,10 +322,8 @@ extern void __sincosl (long double, long double *, long double *);
extern long double __logbl (long double x);
extern long double __significandl (long double x);
-#if __GNUC_PREREQ (4, 0)
extern inline long double __copysignl (long double x, long double y)
{ return __builtin_copysignl (x, y); }
-#endif
#endif