git: 9front

ref: 0868d89a2bf48be25b7bc7f2b7aa95865c1bc04c
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);
}