shithub: scc

ref: 047b3a3a2360895718ce41eddfdefc9bdb21bcb4
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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