Initial revision

This commit is contained in:
bal
1984-11-26 15:04:22 +00:00
parent 6a9e49f683
commit 6d481ce4d6
38 changed files with 5986 additions and 0 deletions

17
util/ego/share/files.c Normal file
View File

@@ -0,0 +1,17 @@
/* 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;
}