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