shithub: scc

ref: 30dd51b701334f8984bbc1359ca05357ed521ed5
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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