shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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