2.9BSD/usr/src/lib/c/stdio/fopen.c

Compare this file to the similar file:
Show the results in this format:

/*	@(#)fopen.c	2.1	SCCS id keyword	*/
#include	<stdio.h>

FILE *
fopen(file, mode)
	char *file, *mode;
{
	FILE *_findiop(), *_endopen();

	return(_endopen(file, mode, _findiop()));
}