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