Fix include guards to not start with _

Since such names are reserved, technically.
This commit is contained in:
Andrew Ayer
2014-04-01 16:15:57 -07:00
parent 7b2604e79e
commit b3e843cfc4
3 changed files with 6 additions and 6 deletions

View File

@@ -28,8 +28,8 @@
* as that of the covered work.
*/
#ifndef _COMMANDS_H
#define _COMMANDS_H
#ifndef GIT_CRYPT_COMMANDS_HPP
#define GIT_CRYPT_COMMANDS_HPP
void clean (const char* keyfile);

View File

@@ -28,8 +28,8 @@
* as that of the covered work.
*/
#ifndef _CRYPTO_H
#define _CRYPTO_H
#ifndef GIT_CRYPT_CRYPTO_HPP
#define GIT_CRYPT_CRYPTO_HPP
#include <openssl/aes.h>
#include <openssl/hmac.h>

View File

@@ -28,8 +28,8 @@
* as that of the covered work.
*/
#ifndef _UTIL_H
#define _UTIL_H
#ifndef GIT_CRYPT_UTIL_HPP
#define GIT_CRYPT_UTIL_HPP
#include <string>
#include <ios>