From e2bbb8b475aad005ee9136f3f4d7af5bb2182597 Mon Sep 17 00:00:00 2001 From: simonmar Date: Fri, 14 Apr 2000 14:07:43 +0000 Subject: [PATCH] [project @ 2000-04-14 14:07:43 by simonmar] msTime() uses non-POSIX features, so #define NON_POSIX_SOURCE. --- ghc/rts/RtsUtils.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc/rts/RtsUtils.c b/ghc/rts/RtsUtils.c index 2b929c9..23bf0d6 100644 --- a/ghc/rts/RtsUtils.c +++ b/ghc/rts/RtsUtils.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: RtsUtils.c,v 1.14 2000/03/31 03:09:36 hwloidl Exp $ + * $Id: RtsUtils.c,v 1.15 2000/04/14 14:07:43 simonmar Exp $ * * (c) The GHC Team, 1998-1999 * @@ -7,6 +7,9 @@ * * ---------------------------------------------------------------------------*/ +/* gettimeofday isn't POSIX */ +#define NON_POSIX_SOURCE + #include "Rts.h" #include "RtsTypes.h" #include "RtsAPI.h" -- 1.7.10.4