home *** CD-ROM | disk | FTP | other *** search
- /*
- externs: external variable declarations.
-
- Kenneth Ingham
-
- Copyright (C) 1987 The University of New Mexico
- */
-
- #include "defs.h"
-
- FILE *cf, *hf;
-
- int intval, ointval;
- char *strval, ostrval[MAX_STR];
- char pipeline[MAX_STR];
-
- struct cmd_st *clist = NULL;
- struct old_cmd_st *chead = NULL;
-
- int parse_error = False;
-
- int pflag, cflag, vflag;
- char histfilename[MAX_STR];
- char controlname[MAX_STR];
- int line_ok;
- int cmd_ok;
-