shithub: scc

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

View raw version
#include <stdio.h>

#undef fputc

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