git: 9front

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