git: 9front

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