shithub: scc

ref: 61f5fa44e9f8b7ce6ee4cd5bd71c10845287960d
dir: /src/libc/stdio/fputc.c/

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

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