summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2025-12-05 14:07:01 +0000
committertb <>2025-12-05 14:07:01 +0000
commitd604767b3782a7a003bea4677652538af9e3bd8e (patch)
treedd8bffbbec65bd181892bf7ce2ebd69a64d95133
parent81326fc54e139837021597c6710352be576fad96 (diff)
downloadopenbsd-d604767b3782a7a003bea4677652538af9e3bd8e.tar.gz
openbsd-d604767b3782a7a003bea4677652538af9e3bd8e.tar.bz2
openbsd-d604767b3782a7a003bea4677652538af9e3bd8e.zip
bn_word.c: include bn_local.h in preparation for an upcoming change
-rw-r--r--src/regress/lib/libcrypto/bn/bn_word.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/regress/lib/libcrypto/bn/bn_word.c b/src/regress/lib/libcrypto/bn/bn_word.c
index 2ec518ed1b..433a8a3ba6 100644
--- a/src/regress/lib/libcrypto/bn/bn_word.c
+++ b/src/regress/lib/libcrypto/bn/bn_word.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn_word.c,v 1.2 2024/08/23 12:56:26 anton Exp $ */ 1/* $OpenBSD: bn_word.c,v 1.3 2025/12/05 14:07:01 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2023 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2023 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -20,6 +20,8 @@
20 20
21#include <openssl/bn.h> 21#include <openssl/bn.h>
22 22
23#include "bn_local.h"
24
23struct bn_word_test { 25struct bn_word_test {
24 const char *in_hex; 26 const char *in_hex;
25 BN_ULONG in_word; 27 BN_ULONG in_word;