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/unix/posix.h | |
parent | f55accce05c3eff9a3ef09a06e80c09135328790 (diff) | |
download | libgit2-abb04caa2f74bb4783eb87202a904c0c3517df85.tar.gz |
consistent header guardsethomson/header_guards
use consistent names for the #include / #define header guard pattern.
Diffstat (limited to 'src/unix/posix.h')
-rw-r--r-- | src/unix/posix.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unix/posix.h b/src/unix/posix.h index ee36ea0f3..f2fffd5c9 100644 --- a/src/unix/posix.h +++ b/src/unix/posix.h @@ -4,8 +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_posix__unix_h__ -#define INCLUDE_posix__unix_h__ +#ifndef INCLUDE_unix_posix_h__ +#define INCLUDE_unix_posix_h__ #ifndef LIBGIT2_NO_FEATURES_H # include "git2/sys/features.h" |