git: 9front

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