git: 9front

ref: 31ef4f2c6d0c30cb173b5df2717ae9e30ea4cace
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);
}