diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2017-03-02 16:38:00 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-03-02 16:38:00 +0100 |
| commit | 1bbf62245c5d484e92bae56b0ef742efeea2f067 (patch) | |
| tree | a5a94feb5aed9d945fb2e17a44643166a41a9293 | |
| parent | 13051717b5a615c5eebe3e4e9a61865de44ba8b2 (diff) | |
executor: fix ppc64le build
| -rw-r--r-- | executor/common.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/executor/common.h b/executor/common.h index b6b3324d9..b1084eb0c 100644 --- a/executor/common.h +++ b/executor/common.h @@ -402,6 +402,11 @@ static uintptr_t syz_fuseblk_mount(uintptr_t a0, uintptr_t a1, uintptr_t a2, uin #include "common_kvm_amd64.h" #elif defined(__aarch64__) #include "common_kvm_arm64.h" +#else +static uintptr_t syz_kvm_setup_cpu(uintptr_t a0, uintptr_t a1, uintptr_t a2, uintptr_t a3, uintptr_t a4, uintptr_t a5, uintptr_t a6, uintptr_t a7) +{ + return 0; +} #endif #endif // #ifdef __NR_syz_kvm_setup_cpu |
