From c6013725a8e9848f522250a07915f64459c28557 Mon Sep 17 00:00:00 2001 From: Péter Szilágyi Date: Fri, 11 Sep 2015 15:53:23 +0300 Subject: godeps: pull in ethash android fix --- Godeps/_workspace/src/github.com/ethereum/ethash/setup.py | 0 .../_workspace/src/github.com/ethereum/ethash/src/libethash/endian.h | 4 ++-- Godeps/_workspace/src/github.com/ethereum/ethash/test/c/test.sh | 0 Godeps/_workspace/src/github.com/ethereum/ethash/test/python/test.sh | 0 Godeps/_workspace/src/github.com/ethereum/ethash/test/test.sh | 0 5 files changed, 2 insertions(+), 2 deletions(-) mode change 100755 => 100644 Godeps/_workspace/src/github.com/ethereum/ethash/setup.py mode change 100755 => 100644 Godeps/_workspace/src/github.com/ethereum/ethash/test/c/test.sh mode change 100755 => 100644 Godeps/_workspace/src/github.com/ethereum/ethash/test/python/test.sh mode change 100755 => 100644 Godeps/_workspace/src/github.com/ethereum/ethash/test/test.sh (limited to 'Godeps/_workspace') diff --git a/Godeps/_workspace/src/github.com/ethereum/ethash/setup.py b/Godeps/_workspace/src/github.com/ethereum/ethash/setup.py old mode 100755 new mode 100644 diff --git a/Godeps/_workspace/src/github.com/ethereum/ethash/src/libethash/endian.h b/Godeps/_workspace/src/github.com/ethereum/ethash/src/libethash/endian.h index e32b1c539..849325a59 100644 --- a/Godeps/_workspace/src/github.com/ethereum/ethash/src/libethash/endian.h +++ b/Godeps/_workspace/src/github.com/ethereum/ethash/src/libethash/endian.h @@ -41,8 +41,8 @@ #define ethash_swap_u64(input_) swap64(input_) #else // posix #include -#define ethash_swap_u32(input_) __bswap_32(input_) -#define ethash_swap_u64(input_) __bswap_64(input_) +#define ethash_swap_u32(input_) bswap_32(input_) +#define ethash_swap_u64(input_) bswap_64(input_) #endif diff --git a/Godeps/_workspace/src/github.com/ethereum/ethash/test/c/test.sh b/Godeps/_workspace/src/github.com/ethereum/ethash/test/c/test.sh old mode 100755 new mode 100644 diff --git a/Godeps/_workspace/src/github.com/ethereum/ethash/test/python/test.sh b/Godeps/_workspace/src/github.com/ethereum/ethash/test/python/test.sh old mode 100755 new mode 100644 diff --git a/Godeps/_workspace/src/github.com/ethereum/ethash/test/test.sh b/Godeps/_workspace/src/github.com/ethereum/ethash/test/test.sh old mode 100755 new mode 100644 -- cgit