shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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