shithub: scc

ref: f482bbbc27c14ba303837d0480f0678c8f9f4a9d
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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