shithub: scc

ref: a91402c720c0b7a791a0df888a2707cf497cb6fe
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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