aboutsummaryrefslogtreecommitdiffstats
path: root/libm
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-08-29 15:54:11 -0700
committerElliott Hughes <enh@google.com>2014-08-29 15:54:11 -0700
commite0c56efddf55ad40cb35b2c22e1dd9b4b50df159 (patch)
tree0e4bed3e5dda4ad2dcf94560c09fe40457e4843a /libm
parent83b637fa28e072aa73691b5ddc588293f06cb54b (diff)
downloadandroid_bionic-e0c56efddf55ad40cb35b2c22e1dd9b4b50df159.tar.gz
android_bionic-e0c56efddf55ad40cb35b2c22e1dd9b4b50df159.tar.bz2
android_bionic-e0c56efddf55ad40cb35b2c22e1dd9b4b50df159.zip
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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libm/include/math.h b/libm/include/math.h
index c51f3afa8..1fcc578dc 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