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