diff options
author | simonmar <unknown> | 2001-07-31 11:51:09 +0000 |
---|---|---|
committer | simonmar <unknown> | 2001-07-31 11:51:09 +0000 |
commit | 6d51c891e082dc04de0f3563929cda9925d18924 (patch) | |
tree | 51013cba9e8f7b0f3ca57167b573c941a9aca228 /libraries/base/cbits/inputReady.c | |
parent | c5175d4c25564f61f6f24811c813b550b5b82e45 (diff) | |
download | haskell-6d51c891e082dc04de0f3563929cda9925d18924.tar.gz |
[project @ 2001-07-31 11:51:09 by simonmar]
Catch up with changes in the main tree.
Diffstat (limited to 'libraries/base/cbits/inputReady.c')
-rw-r--r-- | libraries/base/cbits/inputReady.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/base/cbits/inputReady.c b/libraries/base/cbits/inputReady.c index 4cb9908617..f928dfa0b5 100644 --- a/libraries/base/cbits/inputReady.c +++ b/libraries/base/cbits/inputReady.c @@ -1,7 +1,7 @@ /* * (c) The GRASP/AQUA Project, Glasgow University, 1994-1998 * - * $Id: inputReady.c,v 1.1 2001/06/28 14:15:04 simonmar Exp $ + * $Id: inputReady.c,v 1.2 2001/07/31 11:51:09 simonmar Exp $ * * hReady Runtime Support */ @@ -21,8 +21,8 @@ int inputReady(int fd, int msecs) { - int maxfd, ready; #ifndef mingw32_TARGET_OS + int maxfd, ready; fd_set rfd; struct timeval tv; #endif |