diff options
author | jsing <> | 2023-04-15 18:22:53 +0000 |
---|---|---|
committer | jsing <> | 2023-04-15 18:22:53 +0000 |
commit | af0f2a2ad9511c2309f8f3359b6033e963891a25 (patch) | |
tree | 1afe66174744d0fe869e9dbd6e7604effd0605b0 /src | |
parent | 8910067207dfb2f199523fd9f4e1ed4887e905ef (diff) | |
download | openbsd-af0f2a2ad9511c2309f8f3359b6033e963891a25.tar.gz openbsd-af0f2a2ad9511c2309f8f3359b6033e963891a25.tar.bz2 openbsd-af0f2a2ad9511c2309f8f3359b6033e963891a25.zip |
Revise header guards.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/sha/sha3_internal.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/sha/sha3_internal.h b/src/lib/libcrypto/sha/sha3_internal.h index 3227e6120f..1ed4b02f7c 100644 --- a/src/lib/libcrypto/sha/sha3_internal.h +++ b/src/lib/libcrypto/sha/sha3_internal.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sha3_internal.h,v 1.4 2023/04/15 18:14:21 jsing Exp $ */ | 1 | /* $OpenBSD: sha3_internal.h,v 1.5 2023/04/15 18:22:53 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * The MIT License (MIT) | 3 | * The MIT License (MIT) |
4 | * | 4 | * |
@@ -23,12 +23,12 @@ | |||
23 | * SOFTWARE. | 23 | * SOFTWARE. |
24 | */ | 24 | */ |
25 | 25 | ||
26 | #ifndef SHA3_H | ||
27 | #define SHA3_H | ||
28 | |||
29 | #include <stddef.h> | 26 | #include <stddef.h> |
30 | #include <stdint.h> | 27 | #include <stdint.h> |
31 | 28 | ||
29 | #ifndef HEADER_SHA3_INTERNAL_H | ||
30 | #define HEADER_SHA3_INTERNAL_H | ||
31 | |||
32 | #ifndef KECCAKF_ROUNDS | 32 | #ifndef KECCAKF_ROUNDS |
33 | #define KECCAKF_ROUNDS 24 | 33 | #define KECCAKF_ROUNDS 24 |
34 | #endif | 34 | #endif |