Make DSO opaque.
[openssl.git] / crypto / dso / dso_null.c
index e27f98e49ee22376650703e972e57ef96640d0e8..ed8bcd77ef33ceb14820103796fd34446ba9fa47 100644 (file)
@@ -1,4 +1,3 @@
-/* dso_null.c */
 /*
  * Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL project
  * 2000.
@@ -62,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",
@@ -83,5 +80,5 @@ static DSO_METHOD dso_meth_null = {
 
 DSO_METHOD *DSO_METHOD_null(void)
 {
-    return (&dso_meth_null);
+    return &dso_meth_null;
 }