aboutsummaryrefslogtreecommitdiff
path: root/crypto/tmdiff.c
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-05-06 00:46:34 +0000
committerUlf Möller <ulf@openssl.org>1999-05-06 00:46:34 +0000
commit31a674d8c9766d582596876b221bb685d6d32a91 (patch)
tree657a5edbf78c070ef6c6d379e2d6e6ef72abd41e /crypto/tmdiff.c
parentb282fdae2561282ce8e6ad72aa88cbaabf5743ab (diff)
downloadopenssl-31a674d8c9766d582596876b221bb685d6d32a91.zip
openssl-31a674d8c9766d582596876b221bb685d6d32a91.tar.gz
openssl-31a674d8c9766d582596876b221bb685d6d32a91.tar.bz2
Support additional Win32 compilers.
Borland C submitted by: Janez Jere <jj@void.si>
Diffstat (limited to 'crypto/tmdiff.c')
-rw-r--r--crypto/tmdiff.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/tmdiff.c b/crypto/tmdiff.c
index 593a21d..ecc0006 100644
--- a/crypto/tmdiff.c
+++ b/crypto/tmdiff.c
@@ -183,7 +183,11 @@ double ms_time_diff(char *ap, char *bp)
#else
# ifdef WIN32
{
+#ifdef __GNUC__
+ signed long long la,lb;
+#else
signed _int64 la,lb;
+#endif
la=a->ms_win32.dwHighDateTime;
lb=b->ms_win32.dwHighDateTime;
la<<=32;