diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-09-15 22:49:46 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-09-15 22:49:46 +0000 |
commit | 267c54dcef41ab0ee383b208117b35b3e9d5665c (patch) | |
tree | 12a225729d77cc27c9dff07ea8958a33de2e2d8e /misc | |
parent | 5e17d6b75b6c47e884fceda91078e8e988cbcf7d (diff) |
* stdio-common/vfscanf.c (_IO_vfwscanf): Add support for 'm'
modifier. Patch by Jakub Jelinek.
Diffstat (limited to 'misc')
-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 6b2a4fd881..4d8c405b30 100644 --- a/misc/sys/cdefs.h +++ b/misc/sys/cdefs.h @@ -282,10 +282,7 @@ /* GCC 4.3 and above with -std=c99 or -std=gnu99 implements ISO C99 inline semantics, unless -fgnu89-inline is used. */ -#if !defined __cplusplus || __GNUC_PREREQ (4,3) \ - || (defined __GNUC_RH_RELEASE__ && __GNUC__ == 4 \ - && __GNUC_MINOR__ == 1 && __GNUC_PATCHLEVEL__ == 2 \ - && __GNUC_RH_RELEASE__ >= 23) +#if !defined __cplusplus || __GNUC_PREREQ (4,3) # if defined __GNUC_STDC_INLINE__ || defined __cplusplus # define __extern_inline extern __inline __attribute__ ((__gnu_inline__)) # define __extern_always_inline \ |