shithub: scc

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

View raw version
#include <stdio.h>

#undef fputc

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