From 6cd297a398298b84db362315844ff8a3302d0a14 Mon Sep 17 00:00:00 2001 From: 6eanut Date: Wed, 28 Jan 2026 04:01:57 +0000 Subject: executor: reorder includes in SYZOS headers Reorder include directives in SYZOS headers to follow the project's include ordering rules. https://google.github.io/styleguide/cppguide.html#Names_and_Order_of_Includes Signed-off-by: 6eanut --- executor/common_kvm_amd64_syzos.h | 5 +++-- executor/common_kvm_arm64_syzos.h | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) (limited to 'executor') diff --git a/executor/common_kvm_amd64_syzos.h b/executor/common_kvm_amd64_syzos.h index 897f3ef8c..9de54655f 100644 --- a/executor/common_kvm_amd64_syzos.h +++ b/executor/common_kvm_amd64_syzos.h @@ -6,11 +6,12 @@ // This file provides guest code running inside the AMD64 KVM. -#include "common_kvm_syzos.h" -#include "kvm.h" #include #include +#include "common_kvm_syzos.h" +#include "kvm.h" + // There are no particular rules to assign numbers here, but changing them will // result in losing some existing reproducers. Therefore, we try to leave spaces // between unrelated IDs. diff --git a/executor/common_kvm_arm64_syzos.h b/executor/common_kvm_arm64_syzos.h index 5b50368dd..ae4f0530d 100644 --- a/executor/common_kvm_arm64_syzos.h +++ b/executor/common_kvm_arm64_syzos.h @@ -6,11 +6,12 @@ // This file provides guest code running inside the ARM64 KVM. -#include "common_kvm_syzos.h" -#include "kvm.h" #include #include +#include "common_kvm_syzos.h" +#include "kvm.h" + // Compilers will eagerly try to transform the switch statement in guest_main() // into a jump table, unless the cases are sparse enough. // We use prime numbers multiplied by 10 to prevent this behavior. -- cgit mrf-deployment