git: 9front

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