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