SysIII/usr/src/lib/libc/vax/stdio/fopen.c

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

/*LINTLIBRARY*/
#include	<stdio.h>

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

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