Fix compile error caused by __add3()

This commit is contained in:
jsteube
2017-08-27 19:46:17 +02:00
parent 00e38cc2c6
commit a0be36d7b8
3 changed files with 48 additions and 53 deletions

View File

@@ -7,6 +7,16 @@
#include "types.h"
#include "bitops.h"
u32 __add3_S (const u32 a, const u32 b, const u32 c)
{
return a + b + c;
}
u32 __add3 (const u32 a, const u32 b, const u32 c)
{
return a + b + c;
}
u32 rotl32 (const u32 a, const u32 n)
{
#if defined (_MSC_VER)