shithub: scc

ref: 99970c47ca06ce506823bd2329a37a8f439ce304
dir: /src/libc/stdio/fputc.c/

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

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