shithub: scc

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

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

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