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