shithub: scc

ref: 92f9a64740292aba5d19f9562ab63d3f7645e491
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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