various changes

svn path=/trunk/; revision=214
This commit is contained in:
Rex Jolliff 1999-02-06 00:34:56 +00:00
parent 6bee27aa2a
commit f8492b9ae3

View file

@ -0,0 +1,13 @@
#include <stdio.h>
#undef fileno
int fileno(FILE *f)
{
return f->_file;
}
int _fileno(FILE *f)
{
return f->_file;
}