shithub: scc

ref: 9b360418e28a2e358cfebc2674cf28f7455995ae
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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