diff options
author | Dale Johannesen <dalej@apple.com> | 2003-09-12 19:00:45 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@gcc.gnu.org> | 2003-09-12 19:00:45 +0000 |
commit | a2369ed310098b1f200e68cca7b14376912528d2 (patch) | |
tree | 303c3e3ac91f58b8cf1ef4215691ccba31e396ae /gcc/config/rs6000/rs6000-c.c | |
parent | 4ca0d6d449a0884cbd24bcc87c91253ba093487c (diff) | |
download | gcc-a2369ed310098b1f200e68cca7b14376912528d2.zip gcc-a2369ed310098b1f200e68cca7b14376912528d2.tar.gz gcc-a2369ed310098b1f200e68cca7b14376912528d2.tar.bz2 |
Use ISO C90 prototypes.
From-SVN: r71336
Diffstat (limited to 'gcc/config/rs6000/rs6000-c.c')
-rw-r--r-- | gcc/config/rs6000/rs6000-c.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/config/rs6000/rs6000-c.c b/gcc/config/rs6000/rs6000-c.c index a7e8dd3..a47afee 100644 --- a/gcc/config/rs6000/rs6000-c.c +++ b/gcc/config/rs6000/rs6000-c.c @@ -48,8 +48,7 @@ } while (0) void -rs6000_pragma_longcall (pfile) - cpp_reader *pfile ATTRIBUTE_UNUSED; +rs6000_pragma_longcall (cpp_reader *pfile ATTRIBUTE_UNUSED) { tree x, n; @@ -80,8 +79,7 @@ rs6000_pragma_longcall (pfile) #define builtin_assert(TXT) cpp_assert (pfile, TXT) void -rs6000_cpu_cpp_builtins (pfile) - cpp_reader *pfile; +rs6000_cpu_cpp_builtins (cpp_reader *pfile) { if (TARGET_POWER2) builtin_define ("_ARCH_PWR2"); |