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