git: 9front

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