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