:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / crtdll / stdio / fileno.c
1 #include <crtdll/stdio.h>
2
3 #undef fileno
4 int fileno(FILE *f) 
5 {
6         return f->_file;
7 }
8
9
10 int _fileno(FILE *f) 
11 {
12         return f->_file;
13 }