shithub: scc

ref: 38c7bd73ee1a5c394045ed17eea8661c4f8a6302
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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