From c389ab20bbfd0ea98953d630502a43fe44050f2c Mon Sep 17 00:00:00 2001 From: stolz Date: Thu, 26 Jun 2003 12:22:59 +0000 Subject: [PATCH] [project @ 2003-06-26 12:22:59 by stolz] Warning Police: include unistd.h if available --- ghc/rts/Select.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ghc/rts/Select.c b/ghc/rts/Select.c index 70e0a03..677fdd2 100644 --- a/ghc/rts/Select.c +++ b/ghc/rts/Select.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Select.c,v 1.28 2003/04/01 15:05:22 sof Exp $ + * $Id: Select.c,v 1.29 2003/06/26 12:22:59 stolz Exp $ * * (c) The GHC Team 1995-2002 * @@ -31,6 +31,10 @@ #include #include +#ifdef HAVE_UNISTD_H +#include +#endif + /* last timestamp */ nat timestamp = 0; -- 1.7.10.4