mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
various changes
svn path=/trunk/; revision=214
This commit is contained in:
parent
6bee27aa2a
commit
f8492b9ae3
1 changed files with 13 additions and 0 deletions
13
reactos/lib/crtdll/stdio/fileno.c
Normal file
13
reactos/lib/crtdll/stdio/fileno.c
Normal file
|
@ -0,0 +1,13 @@
|
|||
#include <stdio.h>
|
||||
|
||||
#undef fileno
|
||||
int fileno(FILE *f)
|
||||
{
|
||||
return f->_file;
|
||||
}
|
||||
|
||||
|
||||
int _fileno(FILE *f)
|
||||
{
|
||||
return f->_file;
|
||||
}
|
Loading…
Reference in a new issue