shithub: scc

ref: 27f24349d56b76da526aa232dbb686ad792a055a
dir: /src/libc/stdio/fputc.c/

View raw version
#include <stdio.h>

#undef fputc

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