shithub: scc

ref: 200269262ccb43af46f6357140df8a232dad256d
dir: /src/libc/stdio/fputc.c/

View raw version
#include <stdio.h>
#undef fputc

int
fputc(int c, FILE *fp)
{
	return putc(c, fp);
}