mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-29 06:20:56 +00:00
sha1: add missing header guards
This commit is contained in:
parent
c07d9c95f2
commit
738837bdaa
@ -5,6 +5,9 @@
|
|||||||
* a Linking Exception. For full terms see the included COPYING file.
|
* a Linking Exception. For full terms see the included COPYING file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifndef INCLUDE_sha1_h__
|
||||||
|
#define INCLUDE_sha1_h__
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
unsigned long long size;
|
unsigned long long size;
|
||||||
unsigned int H[5];
|
unsigned int H[5];
|
||||||
@ -19,3 +22,5 @@ void git__blk_SHA1_Final(unsigned char hashout[20], blk_SHA_CTX *ctx);
|
|||||||
#define SHA1_Init git__blk_SHA1_Init
|
#define SHA1_Init git__blk_SHA1_Init
|
||||||
#define SHA1_Update git__blk_SHA1_Update
|
#define SHA1_Update git__blk_SHA1_Update
|
||||||
#define SHA1_Final git__blk_SHA1_Final
|
#define SHA1_Final git__blk_SHA1_Final
|
||||||
|
|
||||||
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user