shithub: scc

ref: a80c579064560b4bcf8ed28ed857b6265dc5fd37
dir: /src/libc/stdio/fputc.c/

View raw version
#include <stdio.h>

#undef fputc

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