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