shithub: scc

ref: 446dc0208959152bad0bb3ed1cb5f037d247d805
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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