shithub: scc

ref: 02036f3d5bb8ab631979aa302bff1433a83bf325
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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