shithub: scc

ref: 53acc44c82ab004ac565970c3f8f4d80894ed761
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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