shithub: scc

ref: 59ec69003f284ff73480ce2724e50fe7ee178f98
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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