shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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