shithub: scc

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

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

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