shithub: scc

ref: 2b760d39218681e0bd7ff9a73d008b4072c091c3
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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