diff options
author | Andreas Schwab <schwab@suse.de> | 2003-11-01 17:26:09 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@gcc.gnu.org> | 2003-11-01 17:26:09 +0000 |
commit | 63482449cc3b0f1b166609827dc6ae9516f45313 (patch) | |
tree | 0f740bea38d40031ad27346db2b6f1b36e132a48 /gcc | |
parent | 6377248ca02ac335ec847d74c4068ea0e9fe2b41 (diff) | |
download | gcc-63482449cc3b0f1b166609827dc6ae9516f45313.zip gcc-63482449cc3b0f1b166609827dc6ae9516f45313.tar.gz gcc-63482449cc3b0f1b166609827dc6ae9516f45313.tar.bz2 |
sysv4.h (SDATA_SECTION_FUNCTION): Update to C90 prototypes.
* config/ia64/sysv4.h (SDATA_SECTION_FUNCTION): Update to C90
prototypes.
(SBSS_SECTION_FUNCTION): Likewise.
From-SVN: r73177
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/ia64/sysv4.h | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ea48397..029c08a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2003-11-01 Andreas Schwab <schwab@suse.de> + + * config/ia64/sysv4.h (SDATA_SECTION_FUNCTION): Update to C90 + prototypes. + (SBSS_SECTION_FUNCTION): Likewise. + 2003-11-01 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * Makefile.in (GCC_CFLAGS): Add @WERROR@ for target files. diff --git a/gcc/config/ia64/sysv4.h b/gcc/config/ia64/sysv4.h index 5db1089..15a57d9 100644 --- a/gcc/config/ia64/sysv4.h +++ b/gcc/config/ia64/sysv4.h @@ -133,7 +133,7 @@ do { \ #define SDATA_SECTION_FUNCTION \ void \ -sdata_section () \ +sdata_section (void) \ { \ if (in_section != in_sdata) \ { \ @@ -146,7 +146,7 @@ sdata_section () \ #define SBSS_SECTION_FUNCTION \ void \ -sbss_section () \ +sbss_section (void) \ { \ if (in_section != in_sbss) \ { \ |