git: 9front

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