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