diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-05-25 15:14:27 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-05-25 15:14:27 +0000 |
commit | f8d1d1b7e853717229fe0a63e00a32be219ac014 (patch) | |
tree | 98749c2f866c4e3371c6ab72c2f23df867b48585 | |
parent | db135dd88889934135e4c123dd85e81700d760b7 (diff) |
sync inclusion of <stdlib.h> from libcrypto
-rw-r--r-- | lib/libssl/bs_ber.c | 3 | ||||
-rw-r--r-- | lib/libssl/bs_cbb.c | 3 | ||||
-rw-r--r-- | lib/libssl/bs_cbs.c | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/lib/libssl/bs_ber.c b/lib/libssl/bs_ber.c index 5cace24d95c..ea9fb253be4 100644 --- a/lib/libssl/bs_ber.c +++ b/lib/libssl/bs_ber.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bs_ber.c,v 1.11 2021/05/16 10:58:27 jsing Exp $ */ +/* $OpenBSD: bs_ber.c,v 1.12 2024/05/25 15:14:26 tb Exp $ */ /* * Copyright (c) 2014, Google Inc. * @@ -15,6 +15,7 @@ * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include <stdint.h> #include <string.h> #include "bytestring.h" diff --git a/lib/libssl/bs_cbb.c b/lib/libssl/bs_cbb.c index e2f87be4d2e..059f9abd068 100644 --- a/lib/libssl/bs_cbb.c +++ b/lib/libssl/bs_cbb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bs_cbb.c,v 1.28 2022/07/07 17:12:15 tb Exp $ */ +/* $OpenBSD: bs_cbb.c,v 1.29 2024/05/25 15:14:26 tb Exp $ */ /* * Copyright (c) 2014, Google Inc. * @@ -15,6 +15,7 @@ * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include <stdint.h> #include <stdlib.h> #include <string.h> diff --git a/lib/libssl/bs_cbs.c b/lib/libssl/bs_cbs.c index 63c078c9b05..76e3bd2a897 100644 --- a/lib/libssl/bs_cbs.c +++ b/lib/libssl/bs_cbs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bs_cbs.c,v 1.24 2021/12/15 17:36:49 jsing Exp $ */ +/* $OpenBSD: bs_cbs.c,v 1.25 2024/05/25 15:14:26 tb Exp $ */ /* * Copyright (c) 2014, Google Inc. * @@ -15,6 +15,7 @@ * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include <stdint.h> #include <stdlib.h> #include <string.h> |