diff options
author | korbb <korbb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-06 01:25:59 +0000 |
---|---|---|
committer | korbb <korbb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-06 01:25:59 +0000 |
commit | b67f0bc6f336d9ac17ae15c025ea23429b4431e5 (patch) | |
tree | 0170da684625b6c96d1f7b05f48e694907ca198a /fixincludes | |
parent | 4777eff425f6aeef6004a2a531cda31586eaa836 (diff) | |
download | gcc-b67f0bc6f336d9ac17ae15c025ea23429b4431e5.tar.gz |
check in required changes for base/sys/sysmacros.h
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121636 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'fixincludes')
-rw-r--r-- | fixincludes/fixincl.x | 4 | ||||
-rw-r--r-- | fixincludes/inclhack.def | 1 | ||||
-rw-r--r-- | fixincludes/tests/base/sys/sysmacros.h | 7 |
3 files changed, 9 insertions, 3 deletions
diff --git a/fixincludes/fixincl.x b/fixincludes/fixincl.x index ffb4c979dd7..a9e27d8990b 100644 --- a/fixincludes/fixincl.x +++ b/fixincludes/fixincl.x @@ -2,11 +2,11 @@ * * DO NOT EDIT THIS FILE (fixincl.x) * - * It has been AutoGen-ed Monday February 5, 2007 at 05:33:02 PM CET + * It has been AutoGen-ed Monday February 5, 2007 at 05:19:14 PM PST * From the definitions inclhack.def * and the template file fixincl */ -/* DO NOT SVN-MERGE THIS FILE, EITHER Mon Feb 5 17:33:02 CET 2007 +/* DO NOT SVN-MERGE THIS FILE, EITHER Mon Feb 5 17:19:14 PST 2007 * * You must regenerate it. Use the ./genfixes script. * diff --git a/fixincludes/inclhack.def b/fixincludes/inclhack.def index e47d7bdcd15..e2ac55c2aa4 100644 --- a/fixincludes/inclhack.def +++ b/fixincludes/inclhack.def @@ -1375,6 +1375,7 @@ fix = { test_text = <<-EOT __extension__ extern __inline unsigned int __extension__ __extern_inline unsigned int + extern __inline unsigned int EOT; }; diff --git a/fixincludes/tests/base/sys/sysmacros.h b/fixincludes/tests/base/sys/sysmacros.h index 40c44f6183e..34d0ed51a3d 100644 --- a/fixincludes/tests/base/sys/sysmacros.h +++ b/fixincludes/tests/base/sys/sysmacros.h @@ -11,9 +11,14 @@ #if defined( GLIBC_C99_INLINE_4_CHECK ) __extension__ -#if __STDC_VERSION__ < 19901L +#if __STDC_VERSION__ < 199901L extern #endif __inline unsigned int __extension__ __extern_inline unsigned int + +#if __STDC_VERSION__ < 199901L +extern +#endif +__inline unsigned int #endif /* GLIBC_C99_INLINE_4_CHECK */ |