diff options
author | jsing <> | 2024-03-28 08:36:13 +0000 |
---|---|---|
committer | jsing <> | 2024-03-28 08:36:13 +0000 |
commit | 72a12f4c37ca1feaa60b3a86de5fbb823b79cd57 (patch) | |
tree | c53e0649d2eefdd907a31db9ccb624d80a247ba7 /src/lib | |
parent | 1e741e76201fe09a0aacb60e858e040d166e899e (diff) | |
download | openbsd-72a12f4c37ca1feaa60b3a86de5fbb823b79cd57.tar.gz openbsd-72a12f4c37ca1feaa60b3a86de5fbb823b79cd57.tar.bz2 openbsd-72a12f4c37ca1feaa60b3a86de5fbb823b79cd57.zip |
Include stdint.h since we use uint*_t types.
Diffstat (limited to 'src/lib')
-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 |