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