shithub: scc

ref: 95d704d06828e99541170b8f5bfc97240d31b79d
dir: /src/libc/stdio/fputc.c/

View raw version
#include <stdio.h>

#undef fputc

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