home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 8
/
FreshFishVol8-CD2.bin
/
bbs
/
gnu
/
libg++-2.6.2.lha
/
libg++-2.6.2
/
libio
/
stdio
/
fileno.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-08-12
|
180b
|
13 lines
#include "libioP.h"
#include "stdio.h"
int
fileno(fp)
_IO_FILE* fp;
{
CHECK_FILE(fp, EOF);
if (!(fp->_flags & _IO_IS_FILEBUF))
return EOF;
return _IO_fileno(fp);
}