shithub: scc

ref: 12420501c287775747660ff682e8de34cb6de853
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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