diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-11-25 23:48:02 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-11-25 23:48:45 -0500 |
commit | c0f9d658279d4d352672e283df53c1072925fc97 (patch) | |
tree | 4ee7ee73b458a71c437011747b26418915baa64f /sim/mips | |
parent | 5fd82aa26484b8f3d584bcec8a33616a719cd24c (diff) | |
download | gdb-c0f9d658279d4d352672e283df53c1072925fc97.zip gdb-c0f9d658279d4d352672e283df53c1072925fc97.tar.gz gdb-c0f9d658279d4d352672e283df53c1072925fc97.tar.bz2 |
sim: mips: avoid _ namespace
Some C libraries export _P symbols in their headers (like older
newlib and its ctype.h), so use P_ instead to avoid conflicts.
Diffstat (limited to 'sim/mips')
-rw-r--r-- | sim/mips/interp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sim/mips/interp.c b/sim/mips/interp.c index 30d417b..2cc7524 100644 --- a/sim/mips/interp.c +++ b/sim/mips/interp.c @@ -1468,14 +1468,14 @@ sim_monitor (SIM_DESC sd, sim_io_printf(sd,"<binary not supported>"); else { -#define _P(c, fmt64, fmt32) \ +#define P_(c, fmt64, fmt32) \ case c: \ if (longlong) \ sim_io_printf (sd, "%" fmt64, lv); \ else \ sim_io_printf (sd, "%" fmt32, (int)lv); \ break; -#define P(c, fmtc) _P(c, PRI##fmtc##64, PRI##fmtc##32) +#define P(c, fmtc) P_(c, PRI##fmtc##64, PRI##fmtc##32) switch (c) { P('d', d) @@ -1486,7 +1486,7 @@ sim_monitor (SIM_DESC sd, } } #undef P -#undef _P +#undef P_ } else if (strchr ("eEfgG", c)) { |