shithub: scc

ref: 42f557fa3b371ba28d45169f4c1371f482d43b6b
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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