diff options
author | Tom Tromey <tromey@redhat.com> | 2012-12-18 19:26:29 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-12-18 19:26:29 +0000 |
commit | ca7b0bbcfaa938faffc6cfe2ece880b5d0fecdf2 (patch) | |
tree | 8adca33fe689a32881f202a9c371f65a7f54773f /gdb/Makefile.in | |
parent | 5d3055ad4f759240ae4b865a49f6283d02caf801 (diff) | |
download | gdb-ca7b0bbcfaa938faffc6cfe2ece880b5d0fecdf2.zip gdb-ca7b0bbcfaa938faffc6cfe2ece880b5d0fecdf2.tar.gz gdb-ca7b0bbcfaa938faffc6cfe2ece880b5d0fecdf2.tar.bz2 |
* Makefile.in (init.c): Declare initialize_all_files;
don't include call-cmds.h.
* call-cmds.h: Remove.
* symtab.c: Don't include call-cmds.h.
* top.c: Don't include call-cmds.h. Declare
initialize_all_files.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 194568b..5ded1a5 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1140,7 +1140,7 @@ init.c: $(INIT_FILES) @echo '/* Do not modify this file. */' >>init.c-tmp @echo '/* It is created automatically by the Makefile. */'>>init.c-tmp @echo '#include "defs.h" /* For initialize_file_ftype. */' >>init.c-tmp - @echo '#include "call-cmds.h" /* For initialize_all_files. */' >>init.c-tmp + @echo 'extern void initialize_all_files(void);' >>init.c-tmp @sed -e 's/\(.*\)/extern initialize_file_ftype _initialize_\1;/' <init.l-tmp >>init.c-tmp @echo 'void' >>init.c-tmp @echo 'initialize_all_files (void)' >>init.c-tmp |