shithub: scc

ref: 6a7602ccce7d0a6489c101866c8372c99cac43d8
dir: /lib/c/src/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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