ref: 27bdfccc4095a289e1a9bfcc1e98f5cca9c0a9c3 dir: /sys/src/libstdio/putc.c/
/* * pANS stdio -- putc */ #include "iolib.h" #undef putc int putc(int c, FILE *f){ return fputc(c, f); }