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