ack/util/ego/share/files.c
2015-06-24 23:41:47 +01:00

23 lines
406 B
C

/* $Id$ */
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/* S H A R E D F I L E
*
* F I L E S . C
*/
#include <stdio.h>
#include "debug.h"
FILE *openfile(char *name, char *mode)
{
FILE *f;
if ((f = fopen(name,mode)) == NULL) {
error("cannot open %s",name);
}
return f;
}