/* * fileno .c - map a stream to a file descriptor */ /* $Header$ */ #include int (fileno)(FILE *stream) { return stream->_fd; }