git: 9front

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