sysv4.h (EXTRA_SECTION_FUNCTIONS): Update to C90 prototypes.
2003-11-01 Andreas Tobler <a.tobler@schweiz.ch> * config/rs6000/sysv4.h (EXTRA_SECTION_FUNCTIONS): Update to C90 prototypes. From-SVN: r73173
This commit is contained in:
parent
f1518966c3
commit
97603db35a
@ -1,3 +1,8 @@
|
|||||||
|
2003-11-01 Andreas Tobler <a.tobler@schweiz.ch>
|
||||||
|
|
||||||
|
* config/rs6000/sysv4.h (EXTRA_SECTION_FUNCTIONS): Update to C90
|
||||||
|
prototypes.
|
||||||
|
|
||||||
2003-11-01 Andreas Jaeger <aj@suse.de>
|
2003-11-01 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
* unwind-dw2.c (_Unwind_FindEnclosingFunction): Constify variable.
|
* unwind-dw2.c (_Unwind_FindEnclosingFunction): Constify variable.
|
||||||
|
@ -468,7 +468,7 @@ do { \
|
|||||||
|
|
||||||
#define TOC_SECTION_FUNCTION \
|
#define TOC_SECTION_FUNCTION \
|
||||||
void \
|
void \
|
||||||
toc_section () \
|
toc_section (void) \
|
||||||
{ \
|
{ \
|
||||||
if (in_section != in_toc) \
|
if (in_section != in_toc) \
|
||||||
{ \
|
{ \
|
||||||
@ -510,14 +510,14 @@ toc_section () \
|
|||||||
} \
|
} \
|
||||||
\
|
\
|
||||||
extern int in_toc_section (void); \
|
extern int in_toc_section (void); \
|
||||||
int in_toc_section () \
|
int in_toc_section (void) \
|
||||||
{ \
|
{ \
|
||||||
return in_section == in_toc; \
|
return in_section == in_toc; \
|
||||||
}
|
}
|
||||||
|
|
||||||
#define SDATA_SECTION_FUNCTION \
|
#define SDATA_SECTION_FUNCTION \
|
||||||
void \
|
void \
|
||||||
sdata_section () \
|
sdata_section (void) \
|
||||||
{ \
|
{ \
|
||||||
if (in_section != in_sdata) \
|
if (in_section != in_sdata) \
|
||||||
{ \
|
{ \
|
||||||
@ -528,7 +528,7 @@ sdata_section () \
|
|||||||
|
|
||||||
#define SDATA2_SECTION_FUNCTION \
|
#define SDATA2_SECTION_FUNCTION \
|
||||||
void \
|
void \
|
||||||
sdata2_section () \
|
sdata2_section (void) \
|
||||||
{ \
|
{ \
|
||||||
if (in_section != in_sdata2) \
|
if (in_section != in_sdata2) \
|
||||||
{ \
|
{ \
|
||||||
@ -539,7 +539,7 @@ sdata2_section () \
|
|||||||
|
|
||||||
#define SBSS_SECTION_FUNCTION \
|
#define SBSS_SECTION_FUNCTION \
|
||||||
void \
|
void \
|
||||||
sbss_section () \
|
sbss_section (void) \
|
||||||
{ \
|
{ \
|
||||||
if (in_section != in_sbss) \
|
if (in_section != in_sbss) \
|
||||||
{ \
|
{ \
|
||||||
@ -550,7 +550,7 @@ sbss_section () \
|
|||||||
|
|
||||||
#define INIT_SECTION_FUNCTION \
|
#define INIT_SECTION_FUNCTION \
|
||||||
void \
|
void \
|
||||||
init_section () \
|
init_section (void) \
|
||||||
{ \
|
{ \
|
||||||
if (in_section != in_init) \
|
if (in_section != in_init) \
|
||||||
{ \
|
{ \
|
||||||
@ -561,7 +561,7 @@ init_section () \
|
|||||||
|
|
||||||
#define FINI_SECTION_FUNCTION \
|
#define FINI_SECTION_FUNCTION \
|
||||||
void \
|
void \
|
||||||
fini_section () \
|
fini_section (void) \
|
||||||
{ \
|
{ \
|
||||||
if (in_section != in_fini) \
|
if (in_section != in_fini) \
|
||||||
{ \
|
{ \
|
||||||
|
Loading…
Reference in New Issue
Block a user