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