shithub: scc

ref: 5eb2945975eab587998f04bf277ec09fcfcec0e1
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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