git: 9front

ref: c6df5c3aca1f0e6061a6c1eb3858c16f0c70de4d
dir: /sys/src/libstdio/putc.c/

View raw version
/*
 * pANS stdio -- putc
 */
#include "iolib.h"
#undef putc
int putc(int c, FILE *f){
	return fputc(c, f);
}