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