summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto')
-rw-r--r--src/lib/libcrypto/asn1/a_bitstr.c8
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