shithub: scc

ref: 045dd2bcc4b996cc2543646b612e28e7fa31b47a
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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