diff options
author | Andreas Jaeger <aj@suse.de> | 2001-08-21 11:42:57 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-08-21 11:42:57 +0000 |
commit | 948f9114c9452486ff24644ca8b7828cdde06bee (patch) | |
tree | 3160a5a8d6b6bcc93ce4722d7e965845ab155983 /ld/deffilep.y | |
parent | c32144ff6becdde701335c5e42182163531a8611 (diff) | |
download | gdb-948f9114c9452486ff24644ca8b7828cdde06bee.zip gdb-948f9114c9452486ff24644ca8b7828cdde06bee.tar.gz gdb-948f9114c9452486ff24644ca8b7828cdde06bee.tar.bz2 |
* deffilep.y: Add missing prototypes.
* pe-dll.c: Likewise.
Diffstat (limited to 'ld/deffilep.y')
-rw-r--r-- | ld/deffilep.y | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ld/deffilep.y b/ld/deffilep.y index d6d32c8..e411831 100644 --- a/ld/deffilep.y +++ b/ld/deffilep.y @@ -1,6 +1,6 @@ %{ /* deffilep.y - parser for .def files */ -/* Copyright 1995, 1997, 1998, 1999, 2000 Free Software Foundation, Inc. +/* Copyright 1995, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of GNU Binutils. @@ -77,14 +77,13 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #define yytable def_yytable #define yycheck def_yycheck -static int def_lex (); - static void def_description PARAMS ((const char *)); static void def_exports PARAMS ((const char *, const char *, int, int)); static void def_heapsize PARAMS ((int, int)); static void def_import PARAMS ((const char *, const char *, const char *, const char *, int)); static void def_library PARAMS ((const char *, int)); +static def_file_module *def_stash_module PARAMS ((def_file *, char *)); static void def_name PARAMS ((const char *, int)); static void def_section PARAMS ((const char *, int)); static void def_section_alt PARAMS ((const char *, const char *)); @@ -93,6 +92,9 @@ static void def_version PARAMS ((int, int)); static void def_directive PARAMS ((char *)); static int def_parse PARAMS ((void)); static int def_error PARAMS ((const char *)); +static void put_buf PARAMS ((char)); +static int def_getc PARAMS ((void)); +static int def_ungetc PARAMS ((int)); static int def_lex PARAMS ((void)); static int lex_forced_token = 0; |