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