shithub: scc

ref: 371b267234d3eed3c3db5f52bab1a89c83cb08d3
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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