summaryrefslogtreecommitdiff
path: root/lib/libcrypto/ui
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2023-03-10 16:41:33 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2023-03-10 16:41:33 +0000
commit789257b32ef4241b9615f2a92748aab635b5b52a (patch)
tree6c9e5fe6edafa9d37d9746beb2cf5530c7d2c5cc /lib/libcrypto/ui
parentedd0c2457527232e8f09aa728ee92f6f34f08f09 (diff)
Expose UI_null()
Diffstat (limited to 'lib/libcrypto/ui')
-rw-r--r--lib/libcrypto/ui/ui.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libcrypto/ui/ui.h b/lib/libcrypto/ui/ui.h
index 0f662455ed3..79d807f03c9 100644
--- a/lib/libcrypto/ui/ui.h
+++ b/lib/libcrypto/ui/ui.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ui.h,v 1.16 2022/12/26 07:18:52 jmc Exp $ */
+/* $OpenBSD: ui.h,v 1.17 2023/03/10 16:41:32 tb Exp $ */
/* Written by Richard Levitte (richard@levitte.org) for the OpenSSL
* project 2001.
*/
@@ -257,9 +257,7 @@ const UI_METHOD *UI_set_method(UI *ui, const UI_METHOD *meth);
/* The method with all the built-in thingies */
UI_METHOD *UI_OpenSSL(void);
-#if defined(LIBRESSL_INTERNAL) || defined(LIBRESSL_NEXT_API)
const UI_METHOD *UI_null(void);
-#endif
/*
* ---------- For method writers ----------