mirror of
https://github.com/jedisct1/libsodium.git
synced 2024-12-19 10:05:05 -07:00
Indent
This commit is contained in:
parent
e1861bb935
commit
633f922791
@ -32,7 +32,7 @@ typedef unsigned uint128_t __attribute__((mode(TI)));
|
|||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
# if defined(_MSC_VER)
|
#ifdef _MSC_VER
|
||||||
|
|
||||||
# define ROTL32(X, B) _rotl((X), (B))
|
# define ROTL32(X, B) _rotl((X), (B))
|
||||||
# define ROTL64(X, B) _rotl64((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));
|
return (x >> b) | (x << (64 - b));
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif /* _MSC_VER */
|
||||||
|
|
||||||
#define LOAD64_LE(SRC) load64_le(SRC)
|
#define LOAD64_LE(SRC) load64_le(SRC)
|
||||||
static inline uint64_t
|
static inline uint64_t
|
||||||
|
Loading…
Reference in New Issue
Block a user