1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-19 10:05:05 -07:00
This commit is contained in:
Frank Denis 2024-08-01 13:56:57 +02:00
parent e1861bb935
commit 633f922791

View File

@ -32,7 +32,7 @@ typedef unsigned uint128_t __attribute__((mode(TI)));
# endif
#endif
# if defined(_MSC_VER)
#ifdef _MSC_VER
# define ROTL32(X, B) _rotl((X), (B))
# define ROTL64(X, B) _rotl64((X), (B))
@ -69,7 +69,7 @@ rotr64(const uint64_t x, const int b)
return (x >> b) | (x << (64 - b));
}
#endif
#endif /* _MSC_VER */
#define LOAD64_LE(SRC) load64_le(SRC)
static inline uint64_t