shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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