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