shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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