shithub: scc

ref: 99bb172e34500445d1969971eb77bff53ac9cb6e
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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