home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 7
/
FreshFishVol7.bin
/
bbs
/
gnu
/
libg++-2.6-fsf.lha
/
libg++-2.6
/
libio
/
stdio
/
fileno.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-11-26
|
176b
|
13 lines
#include "libioP.h"
#include "stdio.h"
int
fileno(fp)
_IO_FILE* fp;
{
COERCE_FILE(fp);
if (!(fp->_flags & _IO_IS_FILEBUF))
return EOF;
return _IO_fileno(fp);
}