summaryrefslogtreecommitdiff
path: root/xc/include
diff options
context:
space:
mode:
authorswick <empty>1989-10-03 16:53:50 +0000
committerswick <empty>1989-10-03 16:53:50 +0000
commit4190267230044819ee8744b6773a75aa3776ced8 (patch)
treeeb0cdd43e624636f089b65999b9dd49be49a61ae /xc/include
parent0d17df4c41aa77237b19c0fb11f8cb477f7719b5 (diff)
CRAY2 wants sys/time.h even though it's SYSV
Diffstat (limited to 'xc/include')
-rw-r--r--xc/include/Xos.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/xc/include/Xos.h b/xc/include/Xos.h
index c51727be8..e66b72ef3 100644
--- a/xc/include/Xos.h
+++ b/xc/include/Xos.h
@@ -1,5 +1,5 @@
/*
- * $XConsortium: Xos.h,v 1.15 89/06/19 11:10:52 jim Exp $
+ * $XConsortium: Xos.h,v 1.16 89/06/19 11:14:59 jim Exp $
*
* Copyright 1987 by the Massachusetts Institute of Technology
*
@@ -79,8 +79,8 @@
*/
#ifdef SYSV
-#ifdef sgi
-#include <sys/time.h> /* SYSV && sgi */
+#if defined(sgi) || defined(CRAY2)
+#include <sys/time.h> /* SYSV && (sgi || CRAY2) */
#else
#include <time.h> /* SYSV */
#endif