shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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