shithub: scc

ref: 0ac77da6b080c9fdd74a036666ed560add8d3810
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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