git: 9front

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