summaryrefslogtreecommitdiff
path: root/Xos.h
diff options
context:
space:
mode:
Diffstat (limited to 'Xos.h')
-rw-r--r--Xos.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/Xos.h b/Xos.h
index 7de76a4..ba81e2b 100644
--- a/Xos.h
+++ b/Xos.h
@@ -27,7 +27,7 @@ in this Software without prior written authorization from The Open Group.
* The X Window System is a Trademark of The Open Group.
*
*/
-/* $XFree86: xc/include/Xos.h,v 3.39 2003/03/25 04:18:07 dawes Exp $ */
+/* $XFree86: xc/include/Xos.h,v 3.41 2003/12/19 02:05:37 dawes Exp $ */
/* This is a collection of things to try and minimize system dependencies
* in a "signficant" number of source files.
@@ -60,6 +60,10 @@ in this Software without prior written authorization from The Open Group.
#endif
#endif /* USG */
+#if defined(SCO325) || defined(__USLC__)
+#include <stdint.h>
+#endif
+
#ifdef _SEQUENT_
/*
* in_systm.h compatibility between SysV and BSD types u_char u_short u_long
@@ -85,6 +89,9 @@ in this Software without prior written authorization from The Open Group.
#ifndef X_NOT_STDC_ENV
#include <string.h>
+#ifdef SCO325
+#include <strings.h>
+#else
#ifdef __STDC__
#ifndef index
#define index(s,c) (strchr((s),(c)))
@@ -100,6 +107,7 @@ in this Software without prior written authorization from The Open Group.
#define rindex strrchr
#endif
#endif
+#endif
#else