shithub: scc

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

View raw version
#include <stdio.h>

#undef fputc

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