git: 9front

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