diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2023-04-15 18:22:54 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2023-04-15 18:22:54 +0000 |
commit | d9dd0b70f00a93a8588f3cdf9865e747650e3fb6 (patch) | |
tree | 0dfa3f593e52894db064063ffd38ec597bd9c027 /lib | |
parent | 1fc0664c913fa14c664e8ae57ca9ca51ad1169a4 (diff) |
Revise header guards.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/sha/sha3_internal.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libcrypto/sha/sha3_internal.h b/lib/libcrypto/sha/sha3_internal.h index 3227e6120f1..1ed4b02f7cf 100644 --- a/lib/libcrypto/sha/sha3_internal.h +++ b/lib/libcrypto/sha/sha3_internal.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sha3_internal.h,v 1.4 2023/04/15 18:14:21 jsing Exp $ */ +/* $OpenBSD: sha3_internal.h,v 1.5 2023/04/15 18:22:53 jsing Exp $ */ /* * The MIT License (MIT) * @@ -23,12 +23,12 @@ * SOFTWARE. */ -#ifndef SHA3_H -#define SHA3_H - #include <stddef.h> #include <stdint.h> +#ifndef HEADER_SHA3_INTERNAL_H +#define HEADER_SHA3_INTERNAL_H + #ifndef KECCAKF_ROUNDS #define KECCAKF_ROUNDS 24 #endif |