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