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