shithub: scc

ref: 276fb4f109a09839c203cc3ce270639e0d605084
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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