From: Ulrich Drepper Date: Sat, 19 Jun 1999 09:57:23 +0000 (+0000) Subject: Use __GNUC_PREREQ. X-Git-Tag: glibc-2.16-ports-before-merge~2890 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e261a74e1620973f340f4d7d769a5030c2db9445;p=thirdparty%2Fglibc.git Use __GNUC_PREREQ. --- diff --git a/sysdeps/alpha/fpu/bits/mathinline.h b/sysdeps/alpha/fpu/bits/mathinline.h index 681ea70cf96..9207d52f6a6 100644 --- a/sysdeps/alpha/fpu/bits/mathinline.h +++ b/sysdeps/alpha/fpu/bits/mathinline.h @@ -75,7 +75,7 @@ __inline_copysign(copysign, double) #undef __MATH_INLINE_copysign -#if defined __GNUC__ && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 8)) +#if __GNUC_PREREQ (2, 8) __MATH_INLINE float __fabsf (float __x) { return __builtin_fabsf (__x); } __MATH_INLINE float fabsf (float __x) { return __builtin_fabsf (__x); } __MATH_INLINE double __fabs (double __x) { return __builtin_fabs (__x); }