From 3409dc35c15bb14c8a525239806322648e079ab1 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 5 Jul 2017 17:12:43 -0700 Subject: [PATCH 1/3] memcheck/arm64: Define __THROW if not already defined Helps compiling with musl where __THROW is not available Signed-off-by: Khem Raj --- Upstream-Status: Submitted memcheck/tests/arm64-linux/scalar.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/memcheck/tests/arm64-linux/scalar.h b/memcheck/tests/arm64-linux/scalar.h index 9008816..8ef050f 100644 --- a/memcheck/tests/arm64-linux/scalar.h +++ b/memcheck/tests/arm64-linux/scalar.h @@ -12,6 +12,10 @@ #include #include +#ifndef __THROW +#define __THROW +#endif + // Since we use vki_unistd.h, we can't include . So we have to // declare this ourselves. extern long int syscall (long int __sysno, ...) __THROW; -- 2.13.2