git: 9front

ref: 9607b1cf15470e47a8efd2c8f141b2c4fc3ce14e
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);
}