shithub: scc

ref: 3bd6fb1ee5670440da8932a75dfe2ad114c30967
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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