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