1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-20 02:25:14 -07:00

Remove unused macros

This commit is contained in:
Frank Denis 2017-02-25 20:59:45 +01:00
parent 0a5a40de5b
commit 1295857ae5

View File

@ -22,10 +22,8 @@ struct chacha_ctx {
typedef struct chacha_ctx chacha_ctx;
#define U8C(v) (v##U)
#define U32C(v) (v##U)
#define U8V(v) ((uint8_t)(v) &U8C(0xFF))
#define U32V(v) ((uint32_t)(v) &U32C(0xFFFFFFFF))
#define ROTATE(v, c) (ROTL32(v, c))