diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-14 03:45:46 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-14 03:45:46 +0000 |
commit | 1eca1e86c89c3ef4288ea8c12ff621a58fe2a8e5 (patch) | |
tree | 9bf83451404763b7d3bfafc37ce10b5e970bd7e1 /gcc/gen-protos.c | |
parent | 7a64179285a815ad5fef3a351a48e72826671f70 (diff) | |
download | gcc-1eca1e86c89c3ef4288ea8c12ff621a58fe2a8e5.tar.gz |
Fix gen-proto (fixproto) build failure.
* Makefile.in (GEN_PROTOS_OBJS): Add $(BUILD_ERRORS).
* gen-protos.c: Include errors.h.
(progname): Delete.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87480 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gen-protos.c')
-rw-r--r-- | gcc/gen-protos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gen-protos.c b/gcc/gen-protos.c index 453b7298046..17e435fde77 100644 --- a/gcc/gen-protos.c +++ b/gcc/gen-protos.c @@ -21,9 +21,9 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "coretypes.h" #include "tm.h" #include "scan.h" +#include "errors.h" int verbose = 0; -const char *progname; static void add_hash (const char *); static int parse_fn_proto (char *, char *, struct fn_decl *); |