summaryrefslogtreecommitdiff
path: root/src/chunk.h
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-11-16 08:34:54 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-11-16 08:34:54 -0800
commitf8b6f2e02fd21477193f1f2471421f4adf19a790 (patch)
treebe0af8d9a9940cd29577e01704a1adb67c593ef5 /src/chunk.h
parent2db928d9a6faec16182ec494d3c0cd3424a03d4e (diff)
parent386e1ba185d1e51a5ada2b61e524b19d8e7a288b (diff)
Merge pull request #200 from craigbarnes/incguard-fix
Rename include guards for consistency and to avoid reserved identifiers
Diffstat (limited to 'src/chunk.h')
-rw-r--r--src/chunk.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chunk.h b/src/chunk.h
index e4a57b2..d0ffb92 100644
--- a/src/chunk.h
+++ b/src/chunk.h
@@ -1,5 +1,5 @@
-#ifndef _CHUNK_H_
-#define _CHUNK_H_
+#ifndef CMARK_CHUNK_H
+#define CMARK_CHUNK_H
#include <string.h>
#include <ctype.h>