git: 9front

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