blob: d0db222f0d67ccffd7b5289d2b6a7a2e40dadf0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* CRTfmode.c
*
* Sets _CRT_fmode to be zero, which will cause _mingw32_init_fmode to leave
* all file modes in their default state (basically text mode).
*
* This file is part of the Mingw32 package.
*
* THIS FILE IS IN THE PUBLIC DOMAIN.
*
* Contributers:
* Created by Colin Peters <colin@fu.is.saga-u.ac.jp>
*
* $Revision$
* $Author$
* $Date$
*
*/
unsigned int _CRT_fmode = 0;
|