shithub: scc

ref: 57fd86ea77bab85e988d003883dc323e2190d6b7
dir: /lib/c/fputc.c/

View raw version
#include <stdio.h>
#undef fputc

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