git: 9front

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