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

  1. /*
  2.    init: initialize any variables needing values, do any other
  3.    initialization needed.
  4.  
  5.    Kenneth Ingham
  6.  
  7.    Copyright (C) 1987 The University of New Mexico
  8. */
  9.  
  10. #include "defs.h"
  11.  
  12. init()
  13. {
  14.     extern char ostrval[], *strval;
  15.  
  16.     ostrval[0] = '\0';
  17.     strval = ostrval;
  18.     init_sigs();
  19.     open_cf();
  20. }
  21.