shithub: scc

ref: 040a49dbae747a2b7bd56c50e65a4ccc08af1253
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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