shithub: scc

ref: 440e24ce81386865be595f5825bc7287d5063ccc
dir: /src/libc/stdio/fputc.c/

View raw version
#include <stdio.h>

#undef fputc

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