aboutsummaryrefslogtreecommitdiff
path: root/ld/ldsym.h
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@cygnus>1992-11-21 11:18:00 +0000
committerJohn Gilmore <gnu@cygnus>1992-11-21 11:18:00 +0000
commite20873a7bf7864a7cc33095c755b49dabe1e51fd (patch)
tree32cad59c0b76b6d030b6fa0346d868b565b275c0 /ld/ldsym.h
parent5d074aa97723ff99cdeef26b3cf90e2095f3a566 (diff)
downloadgdb-e20873a7bf7864a7cc33095c755b49dabe1e51fd.zip
gdb-e20873a7bf7864a7cc33095c755b49dabe1e51fd.tar.gz
gdb-e20873a7bf7864a7cc33095c755b49dabe1e51fd.tar.bz2
* ldctor.h, lderror.h, ldexp.h, ldfile.h, ldindr.h, ldlang.c,
ldlang.h, ldlex.h, ldmain.h, ldmisc.h, ldsym.h, ldver.h, ldwarn.h, ldwrite.h, relax.h: Replace all uses of EXFUN and PROTO ansi-glue macros with PARAMS. Recreational cleanup. Update copyrights.
Diffstat (limited to 'ld/ldsym.h')
-rw-r--r--ld/ldsym.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ld/ldsym.h b/ld/ldsym.h
index fdd24da..db487ac 100644
--- a/ld/ldsym.h
+++ b/ld/ldsym.h
@@ -62,15 +62,15 @@ typedef struct user_symbol_struct
extern CONST char *keepsyms_file;
extern int kept_syms;
-PROTO(ldsym_type *, ldsym_get, (CONST char *));
-PROTO(ldsym_type *, ldsym_get_soft, (CONST char *));
-PROTO(void, ldsym_print_symbol_table,(void));
-PROTO(void, ldsym_write, (void));
-PROTO(boolean, ldsym_undefined, (CONST char *));
+ldsym_type *ldsym_get PARAMS ((CONST char *));
+ldsym_type *ldsym_get_soft PARAMS ((CONST char *));
+void ldsym_print_symbol_table PARAMS ((void));
+void ldsym_write PARAMS ((void));
+boolean ldsym_undefined PARAMS ((CONST char *));
+
#define FOR_EACH_LDSYM(x) \
extern ldsym_type *symbol_head; \
ldsym_type *x; \
for (x = symbol_head; x != (ldsym_type *)NULL; x = x->next)
-
-void EXFUN(ldsym_init,(void));
+void ldsym_init PARAMS ((void));