diff options
| author | 6eanut <jiakaiPeanut@gmail.com> | 2026-01-28 04:01:57 +0000 |
|---|---|---|
| committer | Aleksandr Nogikh <nogikh@google.com> | 2026-01-31 15:04:45 +0000 |
| commit | 6cd297a398298b84db362315844ff8a3302d0a14 (patch) | |
| tree | e60960d725f0bdbac914b8c4f653a32fcd7599ea /executor | |
| parent | 303c96cdfe110b5b32816908275c0f0b0046fdb0 (diff) | |
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 <jiakaiPeanut@gmail.com>
Diffstat (limited to 'executor')
| -rw-r--r-- | executor/common_kvm_amd64_syzos.h | 5 | ||||
| -rw-r--r-- | executor/common_kvm_arm64_syzos.h | 5 |
2 files changed, 6 insertions, 4 deletions
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 <linux/kvm.h> #include <stdbool.h> +#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 <linux/kvm.h> #include <stdbool.h> +#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. |
