diff options
| author | Brad Smith <brad@comstyle.com> | 2012-11-19 04:22:12 -0500 |
|---|---|---|
| committer | Blue Swirl <blauwirbel@gmail.com> | 2012-12-08 14:23:50 +0000 |
| commit | 2aa1cb514cdce31ca68902d464cd03d31a76e998 (patch) | |
| tree | d1763363c609c16975573138d4c874fcb3000d40 /ui/curses.c | |
| parent | 0be4835b4932f38167b611c2b311ebaaec98a8eb (diff) | |
| download | focaccia-qemu-2aa1cb514cdce31ca68902d464cd03d31a76e998.tar.gz focaccia-qemu-2aa1cb514cdce31ca68902d464cd03d31a76e998.zip | |
curses: Remove OpenBSD workaround
I removed the same sort of workaround for OpenBSD within the configure script with commit 4dcc3f5876fa638d5c35bd47be3b717ea74cc2e7 but didn't bother to grep further to come across this same chunk of code in the curses code itself. So the following diff removes the same workaround chunk within the curses code. Signed-off-by: Brad Smith <brad@comstyle.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'ui/curses.c')
| -rw-r--r-- | ui/curses.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ui/curses.c b/ui/curses.c index b40b22307d..5dc0b2c95f 100644 --- a/ui/curses.c +++ b/ui/curses.c @@ -28,10 +28,6 @@ #include <termios.h> #endif -#ifdef __OpenBSD__ -#define resize_term resizeterm -#endif - #include "qemu-common.h" #include "console.h" #include "sysemu.h" |