shithub: scc

ref: 298d40ee45af86e00de6cd59f9cd27a0762e295a
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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