git: 9front

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