shithub: front

ref: 82f44b3ffca7c854a3e1bb10aa42da7d5bffae7b
dir: /sys/src/ape/lib/ap/stdio/putc.c/

View raw version
/*
 * pANS stdio -- putc
 */
#include "iolib.h"
#undef putc
int putc(int c, FILE *f){
	return fputc(c, f);
}