summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bio/bio_local.h
diff options
context:
space:
mode:
authortb <>2024-03-02 09:18:28 +0000
committertb <>2024-03-02 09:18:28 +0000
commit0ad809a3e5e65ac5128296f24014a9b037cbed24 (patch)
treea10ae269ac1b72561a9a6dc886dfb556d16c89ba /src/lib/libcrypto/bio/bio_local.h
parentf827b9a95a19d381c8962caf97efb82ce0d90115 (diff)
downloadopenbsd-0ad809a3e5e65ac5128296f24014a9b037cbed24.tar.gz
openbsd-0ad809a3e5e65ac5128296f24014a9b037cbed24.tar.bz2
openbsd-0ad809a3e5e65ac5128296f24014a9b037cbed24.zip
Remove BIO_{sn,v,vsn}printf(3)
Unsued printing functionality. If something should need this we can readily add it back. ok jsing
Diffstat (limited to 'src/lib/libcrypto/bio/bio_local.h')
-rw-r--r--src/lib/libcrypto/bio/bio_local.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/bio/bio_local.h b/src/lib/libcrypto/bio/bio_local.h
index 4eecf7e04a..f59b5756c9 100644
--- a/src/lib/libcrypto/bio/bio_local.h
+++ b/src/lib/libcrypto/bio/bio_local.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: bio_local.h,v 1.5 2022/12/02 19:44:04 tb Exp $ */ 1/* $OpenBSD: bio_local.h,v 1.6 2024/03/02 09:18:28 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 *
@@ -59,6 +59,8 @@
59#ifndef HEADER_BIO_LOCAL_H 59#ifndef HEADER_BIO_LOCAL_H
60#define HEADER_BIO_LOCAL_H 60#define HEADER_BIO_LOCAL_H
61 61
62#include <stdarg.h>
63
62__BEGIN_HIDDEN_DECLS 64__BEGIN_HIDDEN_DECLS
63 65
64struct bio_method_st { 66struct bio_method_st {
@@ -118,6 +120,8 @@ typedef struct bio_f_buffer_ctx_struct {
118 int obuf_off; /* write/read offset */ 120 int obuf_off; /* write/read offset */
119} BIO_F_BUFFER_CTX; 121} BIO_F_BUFFER_CTX;
120 122
123int BIO_vprintf(BIO *bio, const char *format, va_list args);
124
121__END_HIDDEN_DECLS 125__END_HIDDEN_DECLS
122 126
123#endif /* !HEADER_BIO_LOCAL_H */ 127#endif /* !HEADER_BIO_LOCAL_H */