summaryrefslogtreecommitdiff
path: root/ghc/lib/std/cbits/inputReady.c
diff options
context:
space:
mode:
authorsof <unknown>1999-09-12 16:24:46 +0000
committersof <unknown>1999-09-12 16:24:46 +0000
commit78d10ce46a7d0c60aab9e088a8004f1b6dd435d5 (patch)
treeb3d819e12949c94ad65c58216035b7517f87211c /ghc/lib/std/cbits/inputReady.c
parentd70703b1f0a49bec6a6eecf3f2e9abad99c8bac3 (diff)
downloadhaskell-78d10ce46a7d0c60aab9e088a8004f1b6dd435d5.tar.gz
[project @ 1999-09-12 16:24:46 by sof]
inputReady() and mingw - always return 1, not 0
Diffstat (limited to 'ghc/lib/std/cbits/inputReady.c')
-rw-r--r--ghc/lib/std/cbits/inputReady.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ghc/lib/std/cbits/inputReady.c b/ghc/lib/std/cbits/inputReady.c
index 2e07fcf696..c1af5cc860 100644
--- a/ghc/lib/std/cbits/inputReady.c
+++ b/ghc/lib/std/cbits/inputReady.c
@@ -1,7 +1,7 @@
/*
* (c) The GRASP/AQUA Project, Glasgow University, 1994-1998
*
- * $Id: inputReady.c,v 1.4 1999/03/01 09:23:58 sof Exp $
+ * $Id: inputReady.c,v 1.5 1999/09/12 16:24:46 sof Exp $
*
* hReady Runtime Support
*/
@@ -71,7 +71,7 @@ StgInt msecs;
}
#ifdef mingw32_TARGET_OS
- return 0;
+ return 1;
#else
fd = fo->fd;