From 7da592b730238b125ddbff6e8bfef1b6b7533f31 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 20 May 2014 19:35:16 -0700 Subject: [PATCH] Use uint64_t for 64-bit types instead of unsigned long long --- src/libsodium/crypto_stream/aes128ctr/portable/int128.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/libsodium/crypto_stream/aes128ctr/portable/int128.h b/src/libsodium/crypto_stream/aes128ctr/portable/int128.h index acdede87..7c480619 100644 --- a/src/libsodium/crypto_stream/aes128ctr/portable/int128.h +++ b/src/libsodium/crypto_stream/aes128ctr/portable/int128.h @@ -1,6 +1,8 @@ #ifndef INT128_H #define INT128_H +#include + #include "common.h" #ifdef __cplusplus @@ -10,8 +12,8 @@ #endif typedef struct{ - unsigned long long a; - unsigned long long b; + uint64_t a; + uint64_t b; } int128; #define xor2 crypto_stream_aes128ctr_portable_xor2