diff options
author | Elliott Hughes <enh@google.com> | 2014-08-29 15:54:11 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-08-29 15:54:11 -0700 |
commit | e0c56efddf55ad40cb35b2c22e1dd9b4b50df159 (patch) | |
tree | 0e4bed3e5dda4ad2dcf94560c09fe40457e4843a /libm | |
parent | 83b637fa28e072aa73691b5ddc588293f06cb54b (diff) | |
download | bionic-e0c56efddf55ad40cb35b2c22e1dd9b4b50df159.zip bionic-e0c56efddf55ad40cb35b2c22e1dd9b4b50df159.tar.gz bionic-e0c56efddf55ad40cb35b2c22e1dd9b4b50df159.tar.bz2 |
Use __GNUC_PREREQ rather than __GNUC_PREREQ__ to match glibc.
Bug: 16874785
Change-Id: I8512f8be3fd149d8720c5c3b4657bedd5ce2b1d1
Diffstat (limited to 'libm')
-rw-r--r-- | libm/include/math.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libm/include/math.h b/libm/include/math.h index c51f3af..1fcc578 100644 --- a/libm/include/math.h +++ b/libm/include/math.h @@ -36,11 +36,11 @@ extern const union __nan_un { float __uf; } __nan; -#if __GNUC_PREREQ__(3, 3) || (defined(__INTEL_COMPILER) && __INTEL_COMPILER >= 800) +#if __GNUC_PREREQ(3, 3) || (defined(__INTEL_COMPILER) && __INTEL_COMPILER >= 800) #define __MATH_BUILTIN_CONSTANTS #endif -#if __GNUC_PREREQ__(3, 0) && !defined(__INTEL_COMPILER) +#if __GNUC_PREREQ(3, 0) && !defined(__INTEL_COMPILER) #define __MATH_BUILTIN_RELOPS #endif |