git: 9front

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