git: 9front

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