diff options
author | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-03-22 00:04:34 +0000 |
---|---|---|
committer | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-03-22 00:04:34 +0000 |
commit | 58e13b613610e4b11201653aae4e085103b0eb3a (patch) | |
tree | 8ffb0acb0c180ccc72ff363900c764fb156c789d /gcc/fix-header.c | |
parent | c7c7590ae2f79df77f2a59d6a43378c53bba547f (diff) | |
download | gcc-58e13b613610e4b11201653aae4e085103b0eb3a.tar.gz |
Make sstring buf extern (rather than "common").
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@6844 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fix-header.c')
-rw-r--r-- | gcc/fix-header.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/fix-header.c b/gcc/fix-header.c index 97f9805d584..59754a2e26f 100644 --- a/gcc/fix-header.c +++ b/gcc/fix-header.c @@ -82,6 +82,8 @@ Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "obstack.h" #include "scan.h" +extern sstring buf; + int verbose = 0; int partial_count = 0; #if 0 @@ -167,7 +169,6 @@ char *inc_filename; int inc_filename_length; char *progname = "fix-header"; FILE *outf; -sstring buf; sstring line; int lbrac_line, rbrac_line; |