git: 9front

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