diff options
author | Markus Armbruster <armbru@redhat.com> | 2016-06-29 16:22:46 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2016-07-12 16:19:16 +0200 |
commit | 59e96bcbf904aa05185ac4161a65306dc26cda31 (patch) | |
tree | 38cb2583753cfe46b0ea49ecf23269e7b0528e9c /linux-user/host/x86_64 | |
parent | 35003856977599497f7a873c026c95f2ed3a56e3 (diff) | |
download | qemu-59e96bcbf904aa05185ac4161a65306dc26cda31.zip qemu-59e96bcbf904aa05185ac4161a65306dc26cda31.tar.gz qemu-59e96bcbf904aa05185ac4161a65306dc26cda31.tar.bz2 |
linux-user: Clean up hostdep.h header guards
These headers all use QEMU_HOSTDEP_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_HOSTDEP_H for linux-user/host/$target/hostdep.h.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'linux-user/host/x86_64')
-rw-r--r-- | linux-user/host/x86_64/hostdep.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux-user/host/x86_64/hostdep.h b/linux-user/host/x86_64/hostdep.h index 9dfbf3a..3b42596 100644 --- a/linux-user/host/x86_64/hostdep.h +++ b/linux-user/host/x86_64/hostdep.h @@ -9,8 +9,8 @@ * See the COPYING file in the top-level directory. */ -#ifndef QEMU_HOSTDEP_H -#define QEMU_HOSTDEP_H +#ifndef X86_64_HOSTDEP_H +#define X86_64_HOSTDEP_H /* We have a safe-syscall.inc.S */ #define HAVE_SAFE_SYSCALL |