shithub: scc

ref: 0b07caedf14634c43f549bcab131ad34ab4ffed7
dir: /src/libc/stdio/fputc.c/

View raw version
#include <stdio.h>
#undef fputc

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