diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/sandglass.c | 4 | ||||
-rw-r--r-- | src/sandglass_impl.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/sandglass.c b/src/sandglass.c index 7ffe511..0710788 100644 --- a/src/sandglass.c +++ b/src/sandglass.c @@ -58,7 +58,7 @@ sandglass_init_monotonic(sandglass_t *sandglass, sandglass_resolution_t res) { switch (res) { case SANDGLASS_CPUTIME: -#ifdef SANDGLASS_TSC +#if SANDGLASS_TSC sandglass->freq = sandglass_tsc_freq(); sandglass->loops = sandglass_tsc_loops(); break; @@ -120,7 +120,7 @@ sandglass_real_gettime(sandglass_t *sandglass) case SANDGLASS_MONOTONIC: switch (sandglass->resolution) { case SANDGLASS_CPUTIME: -#ifdef SANDGLASS_TSC +#if SANDGLASS_TSC sandglass->grains = sandglass_get_tsc(); break; #else diff --git a/src/sandglass_impl.h b/src/sandglass_impl.h index accb332..e10562f 100644 --- a/src/sandglass_impl.h +++ b/src/sandglass_impl.h @@ -28,7 +28,7 @@ #include "sandglass.h" #include <time.h> -#ifdef SANDGLASS_TSC +#if SANDGLASS_TSC /* Read the time stamp counter */ long sandglass_get_tsc(); /* Get the frequency of the TSC */ |