shithub: scc

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

View raw version
#include <stdio.h>

#undef fputc

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