/* $Id$ */ /* fdopen( const char *, const char * ) This file is part of the Public Domain C Library (PDCLib). Permission is granted to use, modify, and / or redistribute at will. */ #include #ifndef REGTEST #include <_PDCLIB/io.h> #include <_PDCLIB/glue.h> int fileno( FILE *f ) { return f->handle.sval; } #endif