summaryrefslogtreecommitdiff
path: root/src/config_parse.h
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2018-02-01 15:55:48 -0800
committerEdward Thomson <ethomson@edwardthomson.com>2018-02-01 15:56:33 -0800
commitabb04caa2f74bb4783eb87202a904c0c3517df85 (patch)
tree82454226761e79a9620f93bdeecf86821615f00e /src/config_parse.h
parentf55accce05c3eff9a3ef09a06e80c09135328790 (diff)
downloadlibgit2-ethomson/header_guards.tar.gz
consistent header guardsethomson/header_guards
use consistent names for the #include / #define header guard pattern.
Diffstat (limited to 'src/config_parse.h')
-rw-r--r--src/config_parse.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/config_parse.h b/src/config_parse.h
index 6c1863952..d14a8e60c 100644
--- a/src/config_parse.h
+++ b/src/config_parse.h
@@ -4,6 +4,8 @@
* This file is part of libgit2, distributed under the GNU GPL v2 with
* a Linking Exception. For full terms see the included COPYING file.
*/
+#ifndef INCLUDE_config_parse_h__
+#define INCLUDE_config_parse_h__
#include "common.h"
#include "array.h"
@@ -58,3 +60,5 @@ int git_config_parse(
git_config_parser_comment_cb on_comment,
git_config_parser_eof_cb on_eof,
void *data);
+
+#endif