shithub: scc

ref: 2f51459d358787bb85dfbb87b004920aeaf625a1
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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