SysIII/usr/src/lib/libc/pdp11/stdio/freopen.c

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

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

FILE *
freopen (file, mode, iop)
char *file, *mode;
register FILE *iop;
{
	FILE *_endopen();

	fclose (iop);
	return _endopen (file, mode, iop);
}