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