shithub: scc

ref: 9c363497114e0f7a050c5952fdadb1236e39ed8e
dir: /src/libc/stdio/fputc.c/

View raw version
#include <stdio.h>

#undef fputc

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