shithub: scc

ref: 990dcf7fb41e4b4d050ffb6080ccf794922dd88d
dir: /src/libc/stdio/fputc.c/

View raw version
#include <stdio.h>

#undef fputc

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