summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsof <unknown>1999-03-01 09:04:07 +0000
committersof <unknown>1999-03-01 09:04:07 +0000
commit0c82f29febee7ed9a10925d906e719f1b4e801e6 (patch)
tree16307de809631ef145691f4e586da2d00aadeb25
parent366185c161c417998e1ecf4138ee64d43b49b0d8 (diff)
downloadhaskell-0c82f29febee7ed9a10925d906e719f1b4e801e6.tar.gz
[project @ 1999-03-01 09:04:07 by sof]
mingw32 tweaks
-rw-r--r--ghc/lib/std/cbits/getCPUTime.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/ghc/lib/std/cbits/getCPUTime.c b/ghc/lib/std/cbits/getCPUTime.c
index edc5794d98..2d4e008ae0 100644
--- a/ghc/lib/std/cbits/getCPUTime.c
+++ b/ghc/lib/std/cbits/getCPUTime.c
@@ -1,7 +1,7 @@
/*
* (c) The GRASP/AQUA Project, Glasgow University, 1994-1998
*
- * $Id: getCPUTime.c,v 1.3 1998/12/02 13:27:36 simonm Exp $
+ * $Id: getCPUTime.c,v 1.4 1999/03/01 09:04:07 sof Exp $
*
* getCPUTime Runtime Support
*/
@@ -25,16 +25,20 @@
#include <unistd.h>
#endif
-#ifdef HAVE_SYS_TIMES_H
-#include <sys/times.h>
+#ifndef mingw32_TARGET_OS
+# ifdef HAVE_SYS_TIMES_H
+# include <sys/times.h>
+# endif
#endif
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
-#if defined(HAVE_SYS_RESOURCE_H) && ! irix_TARGET_OS
-#include <sys/resource.h>
+#if !defined(mingw32_TARGET_OS) && !defined(irix_TARGET_OS)
+# if defined(HAVE_SYS_RESOURCE_H)
+# include <sys/resource.h>
+# endif
#endif
#ifdef HAVE_SYS_TIMEB_H