shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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