git: 9front

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