X-Git-Url: https://git.openssl.org/gitweb/?a=blobdiff_plain;f=crypto%2Fdso%2Fdso_null.c;fp=crypto%2Fdso%2Fdso_null.c;h=ed8bcd77ef33ceb14820103796fd34446ba9fa47;hb=73decf5975ff1249c51baa0cb3956bb67fbd64dc;hp=fffa592ae6941aab6a8191f4e37f4385d09bacc7;hpb=29fa0a1af45a1037850b29f5851f4a054124781b;p=openssl.git 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 -#include "internal/cryptlib.h" -#include +#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; }