home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
unix
/
volume11
/
watcher
/
part01
/
init.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
C/C++ Source or Header
|
1987-09-27
|
296 b
|
21 lines
/*
init: initialize any variables needing values, do any other
initialization needed.
Kenneth Ingham
Copyright (C) 1987 The University of New Mexico
*/
#include "defs.h"
init()
{
extern char ostrval[], *strval;
ostrval[0] = '\0';
strval = ostrval;
init_sigs();
open_cf();
}