shithub: scc

ref: 6661a93cfca897396c2803b9cd028068ad7c9a84
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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