V7M/src/libc/stdio/freopen.c

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

#include <stdio.h>

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

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