V7M/src/libc/stdio/fopen.c

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

#include	<stdio.h>

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

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