00001 // This is core/vpl/vpl_fileno.cxx 00002 #include "vpl_fileno.h" 00003 00004 #if defined(VCL_COMO) 00005 extern "C" int fileno(FILE *); 00006 #endif 00007 00008 int vpl_fileno(vcl_FILE *fp) 00009 { 00010 return fileno(fp); 00011 }