Commit dc502ec5 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

crypt32: Make gnutls_(un)?initialize() static.

parent 9d82cda2
......@@ -84,7 +84,7 @@ static void gnutls_log( int level, const char *msg )
TRACE( "<%d> %s", level, msg );
}
BOOL gnutls_initialize(void)
static BOOL gnutls_initialize(void)
{
const char *env_str;
int ret;
......@@ -146,7 +146,7 @@ fail:
return FALSE;
}
void gnutls_uninitialize(void)
static void gnutls_uninitialize(void)
{
pgnutls_global_deinit();
dlclose( libgnutls_handle );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment