shithub: scc

ref: 640caa73c7b211720c1ffa5cd81aba2ea63cb130
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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