ref: a92ffdbbfb3157d6fef23e3a8901c7ecdea68f1b 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; }