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