mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 16:20:37 +00:00
527f2f9057
* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
12 lines
177 B
C
12 lines
177 B
C
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
|
|
#include <precomp.h>
|
|
|
|
int _fmode = _O_TEXT;
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
int *__p__fmode(void)
|
|
{
|
|
return &_fmode;
|
|
}
|