shithub: scc

ref: 1d2ec12245817e06991948b1c2ff972dd84bc0b1
dir: /src/libc/stdio/fputc.c/

View raw version
#include <stdio.h>

#undef fputc

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