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