git: 9front

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