ref: 171cfaf4b91be67fcf3bebe6bfacfff0cc801a6e dir: /sys/src/libstdio/fileno.c/
/* * Posix stdio -- fileno */ #include "iolib.h" int fileno(FILE *f){ if(f==NULL) return -1; else return f->fd; }