diff options
author | Craig Barnes <Cr@igBarn.es> | 2014-11-16 09:19:41 +0000 |
---|---|---|
committer | Craig Barnes <Cr@igBarn.es> | 2014-11-16 09:19:41 +0000 |
commit | 386e1ba185d1e51a5ada2b61e524b19d8e7a288b (patch) | |
tree | be0af8d9a9940cd29577e01704a1adb67c593ef5 /src/bench.h | |
parent | 2db928d9a6faec16182ec494d3c0cd3424a03d4e (diff) |
Rename include guards for consistency and to avoid reserved identifiers
Diffstat (limited to 'src/bench.h')
-rw-r--r-- | src/bench.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/bench.h b/src/bench.h index 13d8aa4..bbea2c6 100644 --- a/src/bench.h +++ b/src/bench.h @@ -1,5 +1,6 @@ -#ifndef __BENCH_H__ -#define __BENCH_H__ +#ifndef CMARK_BENCH_H +#define CMARK_BENCH_H + #include <stdio.h> #include <time.h> @@ -22,4 +23,5 @@ float _cmark_save_time; #define start_timer() #define end_timer(M) #endif + #endif |