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