jcs's openbsd hax
openbsd
1/* $OpenBSD: ui_null.c,v 1.2 2023/02/16 08:38:17 tb Exp $ */
2
3/*
4 * Written by Theo Buehler. Public domain.
5 */
6
7#include "ui_local.h"
8
9static const UI_METHOD ui_null = {
10 .name = "OpenSSL NULL UI",
11};
12
13const UI_METHOD *
14UI_null(void)
15{
16 return &ui_null;
17}
18LCRYPTO_ALIAS(UI_null);