shithub: scc

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

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

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