summaryrefslogtreecommitdiff
path: root/linux-user/signal.c
diff options
context:
space:
mode:
authormalc <av1474@comtv.ru>2009-07-18 13:10:12 +0400
committermalc <av1474@comtv.ru>2009-07-18 13:16:51 +0400
commit3efa9a672e4a5f7b2d35cf457ea277e997a0f8c6 (patch)
treed3fa4c50d285d96efaa3bf37d081d8d159f5f3bb /linux-user/signal.c
parentf6548c0a4b751852b9dcb341e3974e049a45a518 (diff)
downloadqemu-3efa9a672e4a5f7b2d35cf457ea277e997a0f8c6.tar.gz
Avoid name clashes with symbols that leak from system headers
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'linux-user/signal.c')
-rw-r--r--linux-user/signal.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/linux-user/signal.c b/linux-user/signal.c
index 93c2ebe1ea..c8150ee082 100644
--- a/linux-user/signal.c
+++ b/linux-user/signal.c
@@ -3533,12 +3533,12 @@ struct target_mcontext {
varies depending on whether we're PPC64 or not: PPC64 splits
them apart; PPC32 stuffs them together. */
#if defined(TARGET_PPC64)
-#define NVRREG 34
+#define QEMU_NVRREG 34
#else
-#define NVRREG 33
+#define QEMU_NVRREG 33
#endif
- ppc_avr_t altivec[NVRREG];
-#undef NVRREG
+ ppc_avr_t altivec[QEMU_NVRREG];
+#undef QEMU_NVRREG
} mc_vregs __attribute__((__aligned__(16)));
};