shithub: scc

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

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

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