diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2012-10-16 18:45:24 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2012-10-16 18:45:24 +0000 |
commit | 5eceb3958ee6cb42d57d4fe52dd76fb03b178edf (patch) | |
tree | fcddcedf0dc6b3aab54a8f7e85d619e574aa0e11 /newlib/libc/include/tgmath.h | |
parent | 71c13b96338eeb7021c211c1819cba700e85b61c (diff) | |
download | cygnal-5eceb3958ee6cb42d57d4fe52dd76fb03b178edf.tar.gz cygnal-5eceb3958ee6cb42d57d4fe52dd76fb03b178edf.tar.bz2 cygnal-5eceb3958ee6cb42d57d4fe52dd76fb03b178edf.zip |
* libc/include/sys/features.h (__GNUC_PREREQ): Define. Use
throughout in place of explicit GNUC version checks.
* libc/include/_ansi.h (_NOINLINE): Define.
(_NOINLINE_STATIC): Define.
* libc/stdio/vfprintf.c (__sbprintf): Define _NOINLINE_STATIC.
Diffstat (limited to 'newlib/libc/include/tgmath.h')
-rw-r--r-- | newlib/libc/include/tgmath.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/include/tgmath.h b/newlib/libc/include/tgmath.h index 52fb88685..f9c8311cc 100644 --- a/newlib/libc/include/tgmath.h +++ b/newlib/libc/include/tgmath.h @@ -58,8 +58,7 @@ */ /* requires GCC >= 3.1 */ -#if !defined(__GNUC__) || __GNUC__ < 3 || \ - (__GNUC__ == 3 && __GNUC_MINOR__ < 1) +#if !__GNUC_PREREQ (3, 1) #error "<tgmath.h> not implemented for this compiler" #endif |