Commit 74b37280 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Silence some -Wmissing-declarations warnings.

parent c716cc80
......@@ -32,6 +32,8 @@
#include "wine/unicode.h"
#include "wine/debug.h"
#include "winternl.h"
#include "lmcons.h"
#include "lmserver.h"
WINE_DEFAULT_DEBUG_CHANNEL(advapi);
......
......@@ -43,7 +43,7 @@ fnMD4Final pMD4Final;
#define ctxcmp( a, b ) memcmp( (char*)a, (char*)b, FIELD_OFFSET( MD4_CTX, in ) )
void test_md4_ctx()
static void test_md4_ctx(void)
{
static unsigned char message[] =
"In our Life there's If"
......
......@@ -43,7 +43,7 @@ fnMD5Final pMD5Final;
#define ctxcmp( a, b ) memcmp( (char*)a, (char*)b, FIELD_OFFSET( MD5_CTX, in ) )
void test_md5_ctx()
static void test_md5_ctx(void)
{
static unsigned char message[] =
"In our Life there's If"
......
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