diff options
author | tb <> | 2024-05-25 15:12:47 +0000 |
---|---|---|
committer | tb <> | 2024-05-25 15:12:47 +0000 |
commit | f46e630074ec226efebe3e044a168244a114309a (patch) | |
tree | 1364b3a4a6c8f320ec477015825eb87aaebc8e08 /src/lib/libcrypto/bytestring/bs_cbb.c | |
parent | 853b1f60de98d7ea1096afbbaa355f7fff30219d (diff) | |
download | openbsd-f46e630074ec226efebe3e044a168244a114309a.tar.gz openbsd-f46e630074ec226efebe3e044a168244a114309a.tar.bz2 openbsd-f46e630074ec226efebe3e044a168244a114309a.zip |
Include <stdint.h> in the bytestring .c files
They currently depend on bytestring.h pulling that in.
discussed with jsing
Diffstat (limited to 'src/lib/libcrypto/bytestring/bs_cbb.c')
-rw-r--r-- | src/lib/libcrypto/bytestring/bs_cbb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/bytestring/bs_cbb.c b/src/lib/libcrypto/bytestring/bs_cbb.c index c8b6f48245..3c66a28e66 100644 --- a/src/lib/libcrypto/bytestring/bs_cbb.c +++ b/src/lib/libcrypto/bytestring/bs_cbb.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bs_cbb.c,v 1.4 2022/07/07 17:16:05 tb Exp $ */ | 1 | /* $OpenBSD: bs_cbb.c,v 1.5 2024/05/25 15:12:47 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2014, Google Inc. | 3 | * Copyright (c) 2014, Google Inc. |
4 | * | 4 | * |
@@ -15,6 +15,7 @@ | |||
15 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | */ | 16 | */ |
17 | 17 | ||
18 | #include <stdint.h> | ||
18 | #include <stdlib.h> | 19 | #include <stdlib.h> |
19 | #include <string.h> | 20 | #include <string.h> |
20 | 21 | ||