shithub: scc

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

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

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