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