shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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