diff options
author | Markus Armbruster | 2019-03-15 15:51:18 +0100 |
---|---|---|
committer | Markus Armbruster | 2019-05-13 08:58:55 +0200 |
commit | 43e0c3515d51c62d334e860dc045dba7b86814dd (patch) | |
tree | afb0372aebc21b4269909b7779fc19133c22364a /linux-user/nios2/target_signal.h | |
parent | authz: Normalize #include "authz/trace.h" to "trace.h" (diff) | |
download | qemu-43e0c3515d51c62d334e860dc045dba7b86814dd.tar.gz qemu-43e0c3515d51c62d334e860dc045dba7b86814dd.tar.xz qemu-43e0c3515d51c62d334e860dc045dba7b86814dd.zip |
linux-user/nios2 linux-user/riscv: Clean up header guards
Reuse of the same guard symbol in multiple headers is okay as long as
they cannot be included together. scripts/clean-header-guards.pl
can't tell, so it warns.
Since we can avoid guard symbol reuse easily, do so: use guard symbol
${target^^}_${fname^^} for linux-user/$target/$fname, just like we did
in commit a9c94277f0..3500385697.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190315145123.28030-4-armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'linux-user/nios2/target_signal.h')
-rw-r--r-- | linux-user/nios2/target_signal.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux-user/nios2/target_signal.h b/linux-user/nios2/target_signal.h index 7776bcdbfd..fe48721b3d 100644 --- a/linux-user/nios2/target_signal.h +++ b/linux-user/nios2/target_signal.h @@ -1,5 +1,5 @@ -#ifndef TARGET_SIGNAL_H -#define TARGET_SIGNAL_H +#ifndef NIOS2_TARGET_SIGNAL_H +#define NIOS2_TARGET_SIGNAL_H /* this struct defines a stack used during syscall handling */ @@ -18,4 +18,4 @@ typedef struct target_sigaltstack { #include "../generic/signal.h" -#endif /* TARGET_SIGNAL_H */ +#endif /* NIOS2_TARGET_SIGNAL_H */ |