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