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