Reactos
1//
2// ncommode.cpp
3//
4// Copyright (c) Microsoft Corporation. All rights reserved.
5//
6// Defines _commode, which sets the default file commit mode to nocommit.
7//
8#include <corecrt_internal_stdio.h>
9
10
11
12// Set default file commit mode to nocommit
13extern "C" { int _commode = 0; }
14
15
16
17extern "C" int* __cdecl __p__commode()
18{
19 return &_commode;
20}