mirror of
https://github.com/AGWA/git-crypt.git
synced 2025-12-25 20:34:15 -08:00
Fix include guards to not start with _
Since such names are reserved, technically.
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user