git: 9front

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