shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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