summaryrefslogtreecommitdiffstats
path: root/private/crt32/linkopts/commode.c
blob: 0faa595a0f0086ceff4e3ac1734b076be18b90b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/***
*commode.c - set global file commit mode to commit
*
*	Copyright (c) 1990-1992, Microsoft Corporation. All rights reserved.
*
*Purpose:
*	Sets the global file commit mode flag to commit.  Linking with
*	this file sets all files to be opened in commit mode by default.
*
*Revision History:
*	07-11-90  SBM	Module created, based on asm version.
*	08-27-92  GJF	Don't build for POSIX.
*
*******************************************************************************/

#ifndef _POSIX_

#include <cruntime.h>
#include <file2.h>
#include <internal.h>

/* set default file commit mode to commit */
int _commode = _IOCOMMIT;


#endif