git: 9front

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