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