Pristine Ack-5.5
[Ack-5.5.git] / util / ego / share / files.c
1 /* $Id: files.c,v 1.4 1994/06/24 10:29:47 ceriel Exp $ */
2 /*
3  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
4  * See the copyright notice in the ACK home directory, in the file "Copyright".
5  */
6 /*  S H A R E D   F I L E
7  *
8  *  F I L E S . C 
9  */
10
11 #include <stdio.h>
12
13 FILE *openfile(name,mode)
14         char *name,*mode;
15 {
16         FILE *f;
17
18         if ((f = fopen(name,mode)) == NULL) {
19                 error("cannot open %s",name);
20         }
21         return f;
22 }