git: 9front

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