shithub: scc

ref: e12a1007fa3b9df81e20951314a1fc93f0707382
dir: /src/libc/stdio/fputc.c/

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

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