shithub: scc

ref: 28f4f2683abee60783f2bef64c48db65b950855b
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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