shithub: scc

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

View raw version
#include <stdio.h>

#undef fputc

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