diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-12-19 20:54:20 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-12-19 20:54:20 +0000 |
commit | ad76b5cc436937d9fb945bd43d9356651fe182ca (patch) | |
tree | a6f73f44c20cee4051b596a2471e6c38c3b1bc5e /Xos.h | |
parent | 376f9efdab6ef2dce267caa0a0228892e768e390 (diff) |
XFree86 4.3.99.902 (RC 2)
Diffstat (limited to 'Xos.h')
-rw-r--r-- | Xos.h | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -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 |