shithub: scc

ref: a50b052c5182c502499380acc3ebaa2cd4aaacbb
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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