diff options
author | John Gilmore <gnu@cygnus> | 1992-11-21 11:18:00 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1992-11-21 11:18:00 +0000 |
commit | e20873a7bf7864a7cc33095c755b49dabe1e51fd (patch) | |
tree | 32cad59c0b76b6d030b6fa0346d868b565b275c0 /ld/ldwarn.h | |
parent | 5d074aa97723ff99cdeef26b3cf90e2095f3a566 (diff) | |
download | gdb-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/ldwarn.h')
-rw-r--r-- | ld/ldwarn.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/ld/ldwarn.h b/ld/ldwarn.h index 955ae9d..b841ca5 100644 --- a/ld/ldwarn.h +++ b/ld/ldwarn.h @@ -1,5 +1,5 @@ -/* - Copyright (C) 1991 Free Software Foundation, Inc. +/* Warning support for the GNU Linker. + Copyright 1991, 1992 Free Software Foundation, Inc. Written by Steve Chamberlain of Cygnus Support. This file is part of GLD, the GNU linker. @@ -18,7 +18,6 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ - -void EXFUN(add_warning,(asymbol *)); -CONST char * EXFUN(fetch_warning,(asymbol *)); -void EXFUN(produce_warnings,(ldsym_type *, asymbol *)); +void add_warning PARAMS ((asymbol *)); +CONST char *fetch_warning PARAMS ((asymbol *)); +void produce_warnings PARAMS ((ldsym_type *, asymbol *)); |