git: 9front

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