shithub: scc

ref: 79b9a5d60b5790789823b721434f96bd4d88686c
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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