shithub: scc

ref: 1de26472868d15174ef01a9655555340234c4dbe
dir: /src/libc/stdio/fputc.c/

View raw version
#include <stdio.h>

#undef fputc

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