git: 9front

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