shithub: scc

ref: 6bb0202d65456bbd85648ad76552b8709bdb776c
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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