shithub: scc

ref: 2d390f87f239823f51aa811504980688c24813cf
dir: /lib/c/fputc.c/

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

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