diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2018-02-01 15:55:48 -0800 |
---|---|---|
committer | Edward Thomson <ethomson@edwardthomson.com> | 2018-02-01 15:56:33 -0800 |
commit | abb04caa2f74bb4783eb87202a904c0c3517df85 (patch) | |
tree | 82454226761e79a9620f93bdeecf86821615f00e /src/parse.h | |
parent | f55accce05c3eff9a3ef09a06e80c09135328790 (diff) | |
download | libgit2-ethomson/header_guards.tar.gz |
consistent header guardsethomson/header_guards
use consistent names for the #include / #define header guard pattern.
Diffstat (limited to 'src/parse.h')
-rw-r--r-- | src/parse.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/parse.h b/src/parse.h index 419014e93..46897e306 100644 --- a/src/parse.h +++ b/src/parse.h @@ -4,6 +4,9 @@ * 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_parse_h__ +#define INCLUDE_parse_h__ + #include "common.h" typedef struct { @@ -54,3 +57,5 @@ enum GIT_PARSE_PEEK_FLAGS { }; int git_parse_peek(char *out, git_parse_ctx *ctx, int flags); + +#endif |