shithub: scc

ref: aa911418f7dfb7fa7f5026d8cd3f52b03e86fc7e
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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