Fix include guards to not start with _

Since such names are reserved, technically.
This commit is contained in:
Andrew Ayer
2014-04-01 16:18:28 -07:00
parent 7687d11219
commit 8c77209d40
6 changed files with 12 additions and 12 deletions

View File

@@ -28,8 +28,8 @@
* as that of the covered work.
*/
#ifndef _GIT_CRYPT_H
#define _GIT_CRYPT_H
#ifndef GIT_CRYPT_GIT_CRYPT_HPP
#define GIT_CRYPT_GIT_CRYPT_HPP
extern const char* argv0; // initialized in main() to argv[0]