aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar ross <unknown>2003-05-08 16:00:20 +0000
committerGravatar ross <unknown>2003-05-08 16:00:20 +0000
commit7bb7bf57a64e842aaad4844913023e77b1d109a7 (patch)
treee8ec5729f02dfa872183331a2bbfc3fa8e75fc7d /include
parenta1666afc1050b50486f04f49ca543204066aa02e (diff)
[project @ 2003-05-08 16:00:20 by ross]
extra #include's
Diffstat (limited to 'include')
-rw-r--r--include/HsUnix.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/HsUnix.h b/include/HsUnix.h
index f5ce702..559a2ce 100644
--- a/include/HsUnix.h
+++ b/include/HsUnix.h
@@ -1,5 +1,5 @@
/* -----------------------------------------------------------------------------
- * $Id: HsUnix.h,v 1.8 2003/04/11 10:00:07 ross Exp $
+ * $Id: HsUnix.h,v 1.9 2003/05/08 16:00:20 ross Exp $
*
* (c) The University of Glasgow 2002
*
@@ -15,6 +15,9 @@
#include <stdlib.h>
#include <stdio.h>
+#ifdef HAVE_STRING_H
+#include <string.h>
+#endif
#ifdef HAVE_SYS_TIMES_H
#include <sys/times.h>
#endif
@@ -30,6 +33,9 @@
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
+#ifdef HAVE_TIME_H
+#include <time.h>
+#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif