]> sourceware.org Git - newlib-cygwin.git/blob - winsup/cygwin/fhandler_nodevice.cc
Remove unneeded header files from source files throughout.
[newlib-cygwin.git] / winsup / cygwin / fhandler_nodevice.cc
1 /* fhandler.cc. See console.cc for fhandler_console functions.
2
3 Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 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 "winsup.h"
12 #include "cygerrno.h"
13 #include "security.h"
14 #include "path.h"
15 #include "fhandler.h"
16
17 int
18 fhandler_nodevice::open (int, mode_t)
19 {
20 if (!pc.error)
21 set_errno (ENXIO);
22 return 0;
23 }
24
25 fhandler_nodevice::fhandler_nodevice ()
26 {
27 }
This page took 0.033391 seconds and 5 git commands to generate.