shithub: scc

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

View raw version
#include <stdio.h>
#undef fputc

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