shithub: scc

ref: 681e67865a4f1ef968ea8dc981ac62279abef8ad
dir: /src/libc/stdio/fputc.c/

View raw version
#include <stdio.h>

#undef fputc

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