shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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