Declare DllMain internally
authorRichard Levitte <levitte@openssl.org>
Sun, 14 Feb 2016 10:48:47 +0000 (11:48 +0100)
committerRichard Levitte <levitte@openssl.org>
Sun, 14 Feb 2016 13:13:53 +0000 (14:13 +0100)
commitdda71111b88bc36a75e25787ecbe246f2620e940
tree996fd4c55b1c03a4984828422cc52b2df9b24f4b
parent08934f1ab2f19061139f93fe2f1ee2470485b85c
Declare DllMain internally

DllMain is a symbol that needs to be global, but no one needs to know.
However, some compilers will warn if there isn't a declaration before
the function is defined.  Just add a declaration before the function
definition.

Reviewed-by: Kurt Roeckx <kurt@openssl.org>
crypto/cryptlib.c