aboutsummaryrefslogtreecommitdiff
path: root/src/utf8.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/utf8.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/utf8.h')
-rw-r--r--src/utf8.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utf8.h b/src/utf8.h
index 7584761..ecefa4e 100644
--- a/src/utf8.h
+++ b/src/utf8.h
@@ -1,5 +1,5 @@
-#ifndef _H_cmark_UTF8_
-#define _H_cmark_UTF8_
+#ifndef CMARK_UTF8_H
+#define CMARK_UTF8_H
#include <stdint.h>
#include "buffer.h"