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