shithub: scc

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

View raw version
#include <stdio.h>

#undef fputc

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