shithub: scc

ref: 893983575da0f76075ffd8f3d60cb23d6c3475e6
dir: /src/libc/stdio/fputc.c/

View raw version
#include <stdio.h>

#undef fputc

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