diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-11-16 08:34:54 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-11-16 08:34:54 -0800 |
commit | f8b6f2e02fd21477193f1f2471421f4adf19a790 (patch) | |
tree | be0af8d9a9940cd29577e01704a1adb67c593ef5 /src/debug.h | |
parent | 2db928d9a6faec16182ec494d3c0cd3424a03d4e (diff) | |
parent | 386e1ba185d1e51a5ada2b61e524b19d8e7a288b (diff) |
Merge pull request #200 from craigbarnes/incguard-fix
Rename include guards for consistency and to avoid reserved identifiers
Diffstat (limited to 'src/debug.h')
-rw-r--r-- | src/debug.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/debug.h b/src/debug.h index af1d017..fd2ef62 100644 --- a/src/debug.h +++ b/src/debug.h @@ -1,5 +1,5 @@ -#ifndef __debug_h__ -#define __debug_h__ +#ifndef CMARK_DEBUG_H +#define CMARK_DEBUG_H #include <stdio.h> #include <errno.h> #include <string.h> |