diff options
Diffstat (limited to 'steer.c')
-rw-r--r-- | steer.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,7 +14,7 @@ #include <sys/stat.h> #include <fcntl.h> /* creat() */ /* #include <sys/wait.h> /* seems not needed, oct 05 */ -struct stat buf; /* see man(2) stat - gets file status */ +extern struct stat buf; /* see man(2) stat - gets file status */ #include "data.h" #include "big.h" @@ -135,7 +135,7 @@ extern char *dicp,*dicq; char linebuf[BUFSIZE]; /* used for assorted purposes */ /* NB cannot share with linebuf in lex.c, or !! goes wrong */ static char ebuf[pnlim]; -word col; +extern word col; char home_rc[pnlim+8]; char lib_rc[pnlim+8]; char *rc_error=NULL; |