OSDN Git Service

* select.cc (select_stuff::wait): Temporarily disallow APCS.
[pf3gnuchains/pf3gnuchains4x.git] / winsup / cygwin / textreadmode.c
1 /* textreadmode.c
2
3    Copyright 2004, 2010 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       {NULL, 0}
23     };
24   cygwin_internal (CW_PERFILE, pf);
25 }