etlegacy-libs/openssl/crypto/dso/dso_openssl.c

23 lines
522 B
C
Raw Normal View History

2019-03-11 19:18:04 +00:00
/*
2019-12-19 16:23:54 +00:00
* Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.
2019-03-11 19:18:04 +00:00
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/license.html
*/
#include "dso_locl.h"
2019-12-19 16:23:54 +00:00
#ifdef DSO_NONE
2019-03-11 19:18:04 +00:00
static DSO_METHOD dso_meth_null = {
"NULL shared library method"
};
DSO_METHOD *DSO_METHOD_openssl(void)
{
return &dso_meth_null;
}
#endif