shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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