OSDN Git Service

92648ca04b135fa4b6bb8979ac991810655a0f9b
[pf3gnuchains/pf3gnuchains4x.git] / winsup / cygwin / textmode.c
1 /* binmode.c
2
3    Copyright 2000 Red Hat, Inc.
4
5 This file is part of Cygwin.
6
7 This software is a copyrighted work licensed under the terms of the
8 Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
9 details. */
10
11 #include <sys/fcntl.h>
12
13 extern int _fmode;
14 void
15 cygwin_premain0 (int argc, char **argv)
16 {
17   _fmode &= ~_O_BINARY;
18   _fmode |= _O_TEXT;
19 }