shithub: scc

ref: 4ca822523b4538c4267bdd8604fd6a71c7e6aca8
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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