home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume11 / watcher / part01 / externs.c < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-27  |  429 b   |  27 lines

  1. /*
  2.    externs: external variable declarations.
  3.  
  4.    Kenneth Ingham
  5.  
  6.    Copyright (C) 1987 The University of New Mexico
  7. */
  8.  
  9. #include "defs.h"
  10.  
  11. FILE *cf, *hf;
  12.  
  13. int intval, ointval;
  14. char *strval, ostrval[MAX_STR];
  15. char pipeline[MAX_STR];
  16.  
  17. struct cmd_st *clist = NULL;
  18. struct old_cmd_st *chead = NULL;
  19.  
  20. int parse_error = False;
  21.  
  22. int pflag, cflag, vflag;
  23. char histfilename[MAX_STR];
  24. char controlname[MAX_STR];
  25. int line_ok;
  26. int cmd_ok;
  27.