shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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