shithub: scc

ref: 8217c283951a053da7a26fd7dd03d66e14a71205
dir: /src/libc/stdio/fputc.c/

View raw version
#include <stdio.h>

#undef fputc

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