diff options
| author | tb <> | 2026-02-08 17:17:03 +0000 |
|---|---|---|
| committer | tb <> | 2026-02-08 17:17:03 +0000 |
| commit | c1d87b1072b9f7d2783c4658953f787fb56f26a1 (patch) | |
| tree | 309b14d9a4cbfb7658491007a8f20ade47c85105 /src/lib/libcrypto | |
| parent | dcddb3ef0e5583a374e829f3039cf629c80e71d1 (diff) | |
| download | openbsd-c1d87b1072b9f7d2783c4658953f787fb56f26a1.tar.gz openbsd-c1d87b1072b9f7d2783c4658953f787fb56f26a1.tar.bz2 openbsd-c1d87b1072b9f7d2783c4658953f787fb56f26a1.zip | |
a_bitstr.c: fix includes
Diffstat (limited to 'src/lib/libcrypto')
| -rw-r--r-- | src/lib/libcrypto/asn1/a_bitstr.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/lib/libcrypto/asn1/a_bitstr.c b/src/lib/libcrypto/asn1/a_bitstr.c index d84ecb025e..a702a341fa 100644 --- a/src/lib/libcrypto/asn1/a_bitstr.c +++ b/src/lib/libcrypto/asn1/a_bitstr.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: a_bitstr.c,v 1.49 2026/02/08 10:27:00 tb Exp $ */ | 1 | /* $OpenBSD: a_bitstr.c,v 1.50 2026/02/08 17:17:03 tb Exp $ */ |
| 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
| 3 | * All rights reserved. | 3 | * All rights reserved. |
| 4 | * | 4 | * |
| @@ -57,14 +57,16 @@ | |||
| 57 | */ | 57 | */ |
| 58 | 58 | ||
| 59 | #include <limits.h> | 59 | #include <limits.h> |
| 60 | #include <stdint.h> | ||
| 60 | #include <stdio.h> | 61 | #include <stdio.h> |
| 62 | #include <stdlib.h> | ||
| 61 | #include <string.h> | 63 | #include <string.h> |
| 62 | 64 | ||
| 63 | #include <openssl/asn1.h> | 65 | #include <openssl/asn1.h> |
| 64 | #include <openssl/asn1t.h> | 66 | #include <openssl/asn1t.h> |
| 65 | #include <openssl/conf.h> | 67 | #include <openssl/err.h> |
| 66 | #include <openssl/x509v3.h> | ||
| 67 | 68 | ||
| 69 | #include "asn1_local.h" | ||
| 68 | #include "bytestring.h" | 70 | #include "bytestring.h" |
| 69 | #include "err_local.h" | 71 | #include "err_local.h" |
| 70 | 72 | ||
