aboutsummaryrefslogtreecommitdiff
path: root/crypto/tmdiff.c
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-05-13 11:37:32 +0000
committerUlf Möller <ulf@openssl.org>1999-05-13 11:37:32 +0000
commit7d7d2cbcb02206f3393681f2bce198e11e2e185b (patch)
tree93410fafc5aa977c748ea492994da3f581d11278 /crypto/tmdiff.c
parent8d111f4a476896a417069d16597ce3009f9bb992 (diff)
downloadopenssl-7d7d2cbcb02206f3393681f2bce198e11e2e185b.zip
openssl-7d7d2cbcb02206f3393681f2bce198e11e2e185b.tar.gz
openssl-7d7d2cbcb02206f3393681f2bce198e11e2e185b.tar.bz2
VMS support.
Submitted by: Richard Levitte <richard@levitte.org>
Diffstat (limited to 'crypto/tmdiff.c')
-rw-r--r--crypto/tmdiff.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/crypto/tmdiff.c b/crypto/tmdiff.c
index ecc0006..60fea0d 100644
--- a/crypto/tmdiff.c
+++ b/crypto/tmdiff.c
@@ -67,27 +67,27 @@
#ifndef MSDOS
# ifndef WIN32
-# define TIMES
+# if !defined(VMS) || defined(__DECC)
+# define TIMES
+# endif
# endif
#endif
-#ifndef VMS
-# ifndef _IRIX
-# include <time.h>
-# endif
-# ifdef TIMES
-# include <sys/types.h>
-# include <sys/times.h>
-# endif
-#else /* VMS */
-# include <types.h>
- struct tms {
- time_t tms_utime;
- time_t tms_stime;
- time_t tms_uchild; /* I dunno... */
- time_t tms_uchildsys; /* so these names are a guess :-) */
- }
-#endif /* VMS */
+#ifndef _IRIX
+# include <time.h>
+#endif
+#ifdef TIMES
+# include <sys/types.h>
+# include <sys/times.h>
+#endif
+
+/* Depending on the VMS version, the tms structure is perhaps defined.
+ The __TMS macro will show if it was. If it wasn't defined, we should
+ undefine TIMES, since that tells the rest of the program how things
+ should be handled. -- Richard Levitte */
+#if defined(VMS) && defined(__DECC) && !defined(__TMS)
+#undef TIMES
+#endif
#if defined(sun) || defined(__ultrix)
#define _POSIX_SOURCE