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