ref: e0710377d1a0134913d8e52cb5eb41f3badde147
dir: /lib/c/freopen.c/
#include <stdio.h>
#include "syscall.h"
#include "libc.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);
}