shithub: scc

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

View raw version
#include <stdio.h>
#undef fputc

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