OSDN Git Service

Initial checkin of text Corinna sent to cygwin-announce.
[pf3gnuchains/pf3gnuchains4x.git] / winsup / cygwin / automode.c
1 /* automode.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 "winlean.h"
12 #include <sys/fcntl.h>
13 #include <sys/cygwin.h>
14
15 extern int _fmode;
16 void
17 cygwin_premain0 (int argc, char **argv, struct per_process *myself)
18 {
19   static struct __cygwin_perfile pf[] =
20   {
21     {"", O_RDONLY | O_TEXT},
22     {"", O_WRONLY | O_BINARY},
23     {NULL, 0}
24   };
25   cygwin_internal (CW_PERFILE, pf);
26 }