shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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