diff options
author | jsing <> | 2024-03-28 08:36:13 +0000 |
---|---|---|
committer | jsing <> | 2024-03-28 08:36:13 +0000 |
commit | b22c9a6da45f305179a53302c855afcd0c24635e (patch) | |
tree | c53e0649d2eefdd907a31db9ccb624d80a247ba7 /src | |
parent | 42d4fd9b5659baede67d7800274759b8aca34529 (diff) | |
download | openbsd-b22c9a6da45f305179a53302c855afcd0c24635e.tar.gz openbsd-b22c9a6da45f305179a53302c855afcd0c24635e.tar.bz2 openbsd-b22c9a6da45f305179a53302c855afcd0c24635e.zip |
Include stdint.h since we use uint*_t types.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/crypto_internal.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/crypto_internal.h b/src/lib/libcrypto/crypto_internal.h index 5e21535f37..924cf6db49 100644 --- a/src/lib/libcrypto/crypto_internal.h +++ b/src/lib/libcrypto/crypto_internal.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: crypto_internal.h,v 1.8 2024/03/26 04:11:42 jsing Exp $ */ | 1 | /* $OpenBSD: crypto_internal.h,v 1.9 2024/03/28 08:36:13 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2023 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2023 Joel Sing <jsing@openbsd.org> |
4 | * | 4 | * |
@@ -17,6 +17,7 @@ | |||
17 | 17 | ||
18 | #include <endian.h> | 18 | #include <endian.h> |
19 | #include <stddef.h> | 19 | #include <stddef.h> |
20 | #include <stdint.h> | ||
20 | #include <string.h> | 21 | #include <string.h> |
21 | 22 | ||
22 | #ifndef HEADER_CRYPTO_INTERNAL_H | 23 | #ifndef HEADER_CRYPTO_INTERNAL_H |