git: 9front

ref: 424dea82a52d6d8ca3f16c34d1a5aa8d85a822b4
dir: /sys/src/ape/lib/ap/stdio/putc.c/

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