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