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