diff options
author | Markus Armbruster | 2022-05-06 15:49:11 +0200 |
---|---|---|
committer | Markus Armbruster | 2022-05-11 16:50:32 +0200 |
commit | ea9cea93c69d508a333dd1b0cb1a44f6daf80b63 (patch) | |
tree | 7817a5b07af3cb84bfa28839519a77f38ecd55d2 /bsd-user | |
parent | Normalize header guard symbol definition (diff) | |
download | qemu-ea9cea93c69d508a333dd1b0cb1a44f6daf80b63.tar.gz qemu-ea9cea93c69d508a333dd1b0cb1a44f6daf80b63.tar.xz qemu-ea9cea93c69d508a333dd1b0cb1a44f6daf80b63.zip |
Clean up decorations and whitespace around header guards
Cleaned up with scripts/clean-header-guards.pl.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20220506134911.2856099-5-armbru@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'bsd-user')
-rw-r--r-- | bsd-user/arm/target.h | 2 | ||||
-rw-r--r-- | bsd-user/x86_64/target.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bsd-user/arm/target.h b/bsd-user/arm/target.h index 419c039b68..7c423ec575 100644 --- a/bsd-user/arm/target.h +++ b/bsd-user/arm/target.h @@ -17,5 +17,5 @@ static inline bool regpairs_aligned(void *cpu_env) return true; } -#endif /* ! TARGET_H */ +#endif /* TARGET_H */ diff --git a/bsd-user/x86_64/target.h b/bsd-user/x86_64/target.h index 8956631db1..0cf0e2a14a 100644 --- a/bsd-user/x86_64/target.h +++ b/bsd-user/x86_64/target.h @@ -17,5 +17,5 @@ static inline bool regpairs_aligned(void *cpu_env) return false; } -#endif /* ! TARGET_H */ +#endif /* TARGET_H */ |