shithub: scc

ref: 08c48f8d3da19e4f1a70e8da9bdef305002666de
dir: /src/libc/stdio/fputc.c/

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

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