summaryrefslogtreecommitdiff
path: root/hrtimer.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2007-05-05 02:15:11 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2007-05-05 02:15:11 +0000
commit750c2aa1d078b97c222ebe54da350dd8bf24de82 (patch)
tree8057070d790d4738b0145430b88557c6236a2456 /hrtimer.h
parent7df5970ca2b1776fb7a5c246e073187e31b465e4 (diff)
downloadcryptopp-750c2aa1d078b97c222ebe54da350dd8bf24de82.tar.gz
fix compile with Sun CC
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@358 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'hrtimer.h')
-rw-r--r--hrtimer.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/hrtimer.h b/hrtimer.h
index 6bb8301..01c156c 100644
--- a/hrtimer.h
+++ b/hrtimer.h
@@ -2,6 +2,9 @@
#define CRYPTOPP_HRTIMER_H
#include "config.h"
+#ifndef HIGHRES_TIMER_AVAILABLE
+#include <time.h>
+#endif
NAMESPACE_BEGIN(CryptoPP)
@@ -12,7 +15,6 @@ NAMESPACE_BEGIN(CryptoPP)
typedef word32 TimerWord;
#endif
#else
- #include <time.h>
typedef clock_t TimerWord;
#endif