shithub: scc

ref: 0298b8c6607844bc77deb5d21da651a4954af076
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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