git: 9front

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