File:  [MW Coherent from dump] / coherent / a / usr / src / misc / xopen.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Wed May 29 04:56:34 2019 UTC (7 years ago) by root
Branches: MarkWilliams, MAIN
CVS tags: relic, HEAD
coherent

/*
 * Open a file or die in the attempt.
 */
#include <stdio.h>
FILE *
xopen(fn, acs)
char *fn, *acs;
{
	FILE *tmp;

	if(NULL == (tmp = fopen(fn, acs)))
		fatal("Cannot fopen(%s, %s)", fn, acs);
	return(tmp);
}

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.