Fixed compilation warnings

Try to get the number of warnings down
This commit is contained in:
Armin Novak
2021-07-28 15:18:03 +02:00
committed by akallabeth
parent 0c81c73c8d
commit 610396e197
55 changed files with 277 additions and 239 deletions

View File

@@ -48,7 +48,7 @@ static INLINE UINT32 lzcnt_s(UINT32 x)
return __lzcnt(x);
}
int test_lzcnt()
static int test_lzcnt(void)
{
if (lzcnt_s(0x1) != 31)
{
@@ -83,7 +83,7 @@ int test_lzcnt()
return 0;
}
int test_lzcnt16()
static int test_lzcnt16(void)
{
if (__lzcnt16(0x1) != 15)
{