diff options
author | Jakub Jelinek <jakub@redhat.com> | 2007-09-16 05:10:26 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2007-09-16 05:10:26 +0000 |
commit | 3dd79d63094a33921ba845da6d3ea7eec3abfa2f (patch) | |
tree | c25122110b6931fd3e1fa8c18b6ccc40afaebed2 /misc/sys | |
parent | 3524efe0bd5148131e6097bf90191e1872f5c65a (diff) | |
download | glibc-3dd79d63094a33921ba845da6d3ea7eec3abfa2f.zip glibc-3dd79d63094a33921ba845da6d3ea7eec3abfa2f.tar.gz glibc-3dd79d63094a33921ba845da6d3ea7eec3abfa2f.tar.bz2 |
Undo second occurrence of RH GCC hack.
Diffstat (limited to 'misc/sys')
-rw-r--r-- | misc/sys/cdefs.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/misc/sys/cdefs.h b/misc/sys/cdefs.h index 4d8c405..26b9490 100644 --- a/misc/sys/cdefs.h +++ b/misc/sys/cdefs.h @@ -295,10 +295,7 @@ /* GCC 4.3 and above allow passing all anonymous arguments of an __extern_always_inline function to some other vararg function. */ -#if __GNUC_PREREQ (4,3) \ - || (defined __GNUC_RH_RELEASE__ && __GNUC__ == 4 \ - && __GNUC_MINOR__ == 1 && __GNUC_PATCHLEVEL__ == 2 \ - && __GNUC_RH_RELEASE__ >= 23) +#if __GNUC_PREREQ (4,3) # define __va_arg_pack() __builtin_va_arg_pack () # define __va_arg_pack_len() __builtin_va_arg_pack_len () #endif |