:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / msvcrt / io / fmode.c
1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2 #include <msvcrt/fcntl.h>
3 #include <msvcrt/io.h>
4
5 #undef _fmode
6 unsigned int _fmode = O_TEXT;
7
8 unsigned int *__p__fmode(void)
9 {
10    return &_fmode;
11 }