home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
unix
/
volume11
/
watcher
/
part01
/
open_hf.c
< prev
next >
Wrap
C/C++ Source or Header
|
1987-09-27
|
373b
|
24 lines
/*
open_hf: open the history file for writing out log of what we looked
at this run.
Kenneth Ingham
Copyright (C) 1987 The University of New Mexico
*/
#include "defs.h"
open_hf()
{
extern char histfilename[];
extern FILE *hf;
hf = fopen(histfilename, "w");
if (hf == NULL) {
fprintf(stderr, "Unable to open '%s'\n",
histfilename);
exit(1);
}
}