shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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