shithub: scc

ref: 03c0fe7804daa71325f6827b7953579c74548881
dir: /lib/c/freopen.c/

View raw version

#include <stdio.h>

#include "syscall.h"
#undef freopen

FILE *
freopen(const char * restrict name, const char * restrict mode,
        FILE * restrict fp)
{
	if (fclose(fp) == EOF)
		return NULL;
	return _fpopen(name, mode, fp);
}