shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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