git: 9front

ref: 7e4a8f48761c1b3ecb24cf74b4796a7c59c902c3
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);
}