diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2017-09-27 12:38:11 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-09-29 10:36:33 +0200 |
commit | e2f82e924d057935dd4c61c0c53e11b15762eda2 (patch) | |
tree | 32007cf68c19695db0b1dd1e43bc85cb8e8ad6ad /target/unicore32 | |
parent | ab161529261928ae7f3556e3220829c34b2686ec (diff) |
console: purge curses bits from console.h
Handle the translation from vga chars to curses chars in curses_update()
instead of console_write_ch(). Purge any curses support bits from
ui/console.h include file.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 20170927103811.19249-1-kraxel@redhat.com
Diffstat (limited to 'target/unicore32')
-rw-r--r-- | target/unicore32/helper.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/target/unicore32/helper.c b/target/unicore32/helper.c index 309dcd1ae1..3393d2c020 100644 --- a/target/unicore32/helper.c +++ b/target/unicore32/helper.c @@ -163,6 +163,12 @@ uint32_t helper_cp0_get(CPUUniCore32State *env, uint32_t creg, uint32_t cop) } #ifdef CONFIG_CURSES + +/* KEY_EVENT is defined in wincon.h and in curses.h. Avoid redefinition. */ +#undef KEY_EVENT +#include <curses.h> +#undef KEY_EVENT + /* * FIXME: * 1. curses windows will be blank when switching back |