Added extern references to rawfileFp, rawfileBinary, last_used_rawfile, and resumption;

This commit is contained in:
sjborley 2005-05-29 01:04:08 +00:00
parent b7701cd0e9
commit 08fb461abb
1 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,7 @@
/*************
* Header file for runcoms.c
* 1999 E. Rouat
* $Id$
************/
#ifndef RUNCOMS_H_INCLUDED
@ -20,6 +21,9 @@ void com_run(wordlist *wl);
int ft_dorun(char *file);
bool ft_getOutReq(FILE **fpp, struct plot **plotp, bool *binp, char *name, char *title);
extern FILE *rawfileFp;
extern bool rawfileBinary;
extern char *last_used_rawfile;
extern bool resumption;
#endif