diff options
author | Markus Armbruster <armbru@redhat.com> | 2016-06-29 16:09:50 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2016-07-12 16:19:16 +0200 |
commit | 9c93ae13a4014055c5c78e81078e5ccdc60c1cfa (patch) | |
tree | 034e11580d44609a736c4e3f633e057e5e6bf90a /linux-user/tilegx/target_signal.h | |
parent | 55c5063c61e030c533b4bca8ef2a2ad26f1bc73a (diff) | |
download | qemu-9c93ae13a4014055c5c78e81078e5ccdc60c1cfa.tar.gz qemu-9c93ae13a4014055c5c78e81078e5ccdc60c1cfa.tar.bz2 qemu-9c93ae13a4014055c5c78e81078e5ccdc60c1cfa.zip |
linux-user: Clean up target_signal.h header guards
These headers all use TARGET_SIGNAL_H as header guard symbol. Reuse
of the same guard symbol in multiple headers is okay as long as they
cannot be included together.
Since we can avoid guard symbol reuse easily, do so: use guard symbol
$target_TARGET_SIGNAL_H for linux-user/$target/target_signal.h.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'linux-user/tilegx/target_signal.h')
-rw-r--r-- | linux-user/tilegx/target_signal.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux-user/tilegx/target_signal.h b/linux-user/tilegx/target_signal.h index fcf10405c4..f64551a8cf 100644 --- a/linux-user/tilegx/target_signal.h +++ b/linux-user/tilegx/target_signal.h @@ -1,5 +1,5 @@ -#ifndef TARGET_SIGNAL_H -#define TARGET_SIGNAL_H +#ifndef TILEGX_TARGET_SIGNAL_H +#define TILEGX_TARGET_SIGNAL_H #include "cpu.h" @@ -26,4 +26,4 @@ static inline abi_ulong get_sp_from_cpustate(CPUTLGState *state) } -#endif /* TARGET_SIGNAL_H */ +#endif /* TILEGX_TARGET_SIGNAL_H */ |