git: 9front

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