ack/util/ego/share/files.c

18 lines
218 B
C
Raw Normal View History

1984-11-26 15:04:22 +00:00
/* S H A R E D F I L E
*
* F I L E S . C
*/
#include <stdio.h>
FILE *openfile(name,mode)
char *name,*mode;
{
FILE *f;
if ((f = fopen(name,mode)) == NULL) {
error("cannot open %s",name);
}
return f;
}