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