summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bn/bn_prime.c
diff options
context:
space:
mode:
authortb <>2025-11-08 16:27:33 +0000
committertb <>2025-11-08 16:27:33 +0000
commit286cd02a2b95cd94707d1ae63155b59302dfefc7 (patch)
treeb167b0c2f85e286b1818cd75cbac4f8967b3ae7c /src/lib/libcrypto/bn/bn_prime.c
parente04ddb18312c008211990eb707783679b32ff174 (diff)
downloadopenbsd-286cd02a2b95cd94707d1ae63155b59302dfefc7.tar.gz
openbsd-286cd02a2b95cd94707d1ae63155b59302dfefc7.tar.bz2
openbsd-286cd02a2b95cd94707d1ae63155b59302dfefc7.zip
bn_prime.c: fix includesHEADmaster
Diffstat (limited to 'src/lib/libcrypto/bn/bn_prime.c')
-rw-r--r--src/lib/libcrypto/bn/bn_prime.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/libcrypto/bn/bn_prime.c b/src/lib/libcrypto/bn/bn_prime.c
index c07fcedcda..3d7f18a8ea 100644
--- a/src/lib/libcrypto/bn/bn_prime.c
+++ b/src/lib/libcrypto/bn/bn_prime.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn_prime.c,v 1.36 2025/11/06 09:04:14 tb Exp $ */ 1/* $OpenBSD: bn_prime.c,v 1.37 2025/11/08 16:27:33 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 *
@@ -109,8 +109,9 @@
109 * 109 *
110 */ 110 */
111 111
112#include <stdio.h> 112#include <stddef.h>
113#include <time.h> 113
114#include <openssl/bn.h>
114 115
115#include "bn_local.h" 116#include "bn_local.h"
116#include "err_local.h" 117#include "err_local.h"