/* Copyright (C) 1989, Digital Equipment Corporation */ /* All rights reserved. */ /* See the file COPYRIGHT for a full description. */ /* Last modified on Wed Nov 4 10:43:24 MET 1992 by preschern */ /* fileno is usually implemented as a macro - if so, we have * problems with a extern declaration of fileno - therefore * I have written this file. see also Ustdio.i3. */ #include int _fileno (__stream) FILE *__stream; { return fileno (__stream); }