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