shithub: scc

ref: 72154ee31c060546f417db8094554ce8940df181
dir: /lib/c/fputc.c/

View raw version
#include <stdio.h>
#undef fputc

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