summaryrefslogtreecommitdiffstats
path: root/crypto/dso/dso_null.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/dso/dso_null.c')
-rw-r--r--crypto/dso/dso_null.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/crypto/dso/dso_null.c b/crypto/dso/dso_null.c
index fffa592ae6..ed8bcd77ef 100644
--- a/crypto/dso/dso_null.c
+++ b/crypto/dso/dso_null.c
@@ -61,9 +61,7 @@
* appropriate support for "shared-libraries".
*/
-#include <stdio.h>
-#include "internal/cryptlib.h"
-#include <openssl/dso.h>
+#include "dso_locl.h"
static DSO_METHOD dso_meth_null = {
"NULL shared library method",
@@ -82,5 +80,5 @@ static DSO_METHOD dso_meth_null = {
DSO_METHOD *DSO_METHOD_null(void)
{
- return (&dso_meth_null);
+ return &dso_meth_null;
}