diff options
author | lloyd <[email protected]> | 2008-06-12 14:47:25 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-06-12 14:47:25 +0000 |
commit | b730ba19274f5422adb70df6d3328c46af35142f (patch) | |
tree | 4eb96b82b4489215587ee4b01ddafff9d9962f14 /checks/clock.cpp | |
parent | 1164b265ebecfb2132b07c9492e71881c69b2be4 (diff) |
Fix some -Wmissing-declarations warnings
Diffstat (limited to 'checks/clock.cpp')
-rw-r--r-- | checks/clock.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/checks/clock.cpp b/checks/clock.cpp index cf95f5d2f..73f2c0e39 100644 --- a/checks/clock.cpp +++ b/checks/clock.cpp @@ -10,13 +10,13 @@ using namespace Botan; benchmarks and such take forever. */ -#define USE_CLOCK 1 +#define USE_CLOCK 0 #define USE_TIMES 0 #define USE_POSIX_GETTIME 0 -#define USE_RDTSC 0 +#define USE_RDTSC 1 /* If using USE_RDTSC, set to your CPU's Mhz */ -#define CPU_MHZ 1866 +#define CPU_MHZ 2400 #if USE_CLOCK |