summaryrefslogtreecommitdiffstats
path: root/src/bool/lucky/luckyInt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/bool/lucky/luckyInt.h')
-rw-r--r--src/bool/lucky/luckyInt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bool/lucky/luckyInt.h b/src/bool/lucky/luckyInt.h
index 58a7235c..740c35b8 100644
--- a/src/bool/lucky/luckyInt.h
+++ b/src/bool/lucky/luckyInt.h
@@ -90,10 +90,10 @@ typedef struct
static inline void TimePrint( char* Message )
{
static int timeBegin;
- double time = 1.0*(clock() - timeBegin)/CLOCKS_PER_SEC ;
+ double time = 1.0*(Abc_Clock() - timeBegin)/CLOCKS_PER_SEC ;
if ( Message != NULL)
printf("%s = %f sec.\n", Message, time);
- timeBegin = clock();
+ timeBegin = Abc_Clock();
}
static inline int CompareWords( word x, word y)