diff options
author | Andreas Schwab <schwab@redhat.com> | 2010-01-12 15:57:53 +0100 |
---|---|---|
committer | Andreas Schwab <schwab@redhat.com> | 2010-01-12 16:02:34 +0100 |
commit | 4ec90460fef4a641be743d730623be96b93dad8a (patch) | |
tree | cf222cac5df605832c6dde7a90a9695e54068857 /include | |
parent | 9b0eb94309fd846536bae6b70aebcb6a66667742 (diff) | |
parent | 8500fa8325bb9dde4ebb3aa59a52fd2ffdc07f54 (diff) | |
download | glibc-4ec90460fef4a641be743d730623be96b93dad8a.tar glibc-4ec90460fef4a641be743d730623be96b93dad8a.tar.gz glibc-4ec90460fef4a641be743d730623be96b93dad8a.tar.bz2 glibc-4ec90460fef4a641be743d730623be96b93dad8a.zip |
Merge remote branch 'origin/master' into fedora/master
Diffstat (limited to 'include')
-rw-r--r-- | include/features.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/features.h b/include/features.h index c61e373498..7827cc2173 100644 --- a/include/features.h +++ b/include/features.h @@ -153,6 +153,8 @@ /* If _GNU_SOURCE was defined by the user, turn on all the other features. */ #ifdef _GNU_SOURCE +# undef _ISOC95_SOURCE +# define _ISOC95_SOURCE 1 # undef _ISOC99_SOURCE # define _ISOC99_SOURCE 1 # undef _POSIX_SOURCE @@ -233,6 +235,8 @@ #if (_POSIX_C_SOURCE - 0) >= 200112L # define __USE_XOPEN2K 1 +# undef __USE_ISOC95 +# define __USE_ISOC95 1 # undef __USE_ISOC99 # define __USE_ISOC99 1 #endif @@ -257,6 +261,8 @@ # endif # define __USE_XOPEN2K 1 # define __USE_XOPEN2KXSI 1 +# undef __USE_ISOC95 +# define __USE_ISOC95 1 # undef __USE_ISOC99 # define __USE_ISOC99 1 # endif |