summaryrefslogtreecommitdiffstats
path: root/private/crt32/linkopts/binmode.c
blob: 81ed8787c8dee94b8c1ce4b308d8fa3ee1eac6bd (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
27
28
/***
*binmode.c - set global file mode to binary
*
*	Copyright (c) 1989-1992, Microsoft Corporation. All rights reserved.
*
*Purpose:
*	Sets the global file mode flag to binary.  Linking with this file
*	sets all files to be opened in binary mode.
*
*Revision History:
*	06-08-89  PHG	Module created, based on asm version.
*	04-04-90  GJF	Added #include <cruntime.h>. Also, fixed the copyright.
*	01-17-91  GJF	ANSI naming.
*	01-23-92  GJF	Added #include <stdlib.h> (contains decl of _fmode).
*	08-27-92  GJF	Don't build for POSIX.
*
*******************************************************************************/

#ifndef _POSIX_

#include <cruntime.h>
#include <fcntl.h>
#include <stdlib.h>

/* set default file mode */
int _fmode = _O_BINARY;

#endif