This commit is contained in:
Frank Denis 2017-03-01 10:33:48 +01:00
parent de6a932842
commit 6349e75304

View File

@ -24,11 +24,11 @@
#include "utils.h"
#ifdef HAVE_TI_MODE
#if defined(__SIZEOF_INT128__)
# if defined(__SIZEOF_INT128__)
typedef unsigned __int128 uint128_t;
#else
# else
typedef unsigned uint128_t __attribute__((mode(TI)));
#endif
# endif
#endif
static blake2b_compress_fn blake2b_compress = blake2b_compress_ref;