summaryrefslogtreecommitdiff
path: root/zwgc
diff options
context:
space:
mode:
authorGravatar Richard Basch <probe@mit.edu>1993-11-21 01:23:50 +0000
committerGravatar Richard Basch <probe@mit.edu>1993-11-21 01:23:50 +0000
commit17cfafa033bc1e8cefeebdbd00eccae815d04e4f (patch)
treeffbda572e0d92e218579e83c9cc0d9caca14300a /zwgc
parentbea4929cfe1d3d877e252f8e0fd7707a60b541e5 (diff)
Assume ulong is defined, except on explicit platforms...
Diffstat (limited to 'zwgc')
-rw-r--r--zwgc/ulong.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/zwgc/ulong.h b/zwgc/ulong.h
index f363706..6a3275a 100644
--- a/zwgc/ulong.h
+++ b/zwgc/ulong.h
@@ -15,10 +15,9 @@
#ifndef ulong_MODULE
#define ulong_MODULE
-#if defined(_AIX) || defined(_AUX_SOURCE) || defined(SYSV)
-/* Sys5 derived systems define ulong in <sys/types.h>. */
#include <sys/types.h>
-#else
+
+#if defined(ultrix) || defined(vax)
typedef unsigned long ulong;
#endif