shithub: scc

ref: 07c3fc899a4788187f52b99961c7ae1777201d5b
dir: /lib/c/stdio/fputc.c/

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

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