git: 9front

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