From: Brad Smith Date: Mon, 19 Nov 2012 09:22:12 +0000 (-0500) Subject: curses: Remove OpenBSD workaround X-Git-Tag: qemu-xen-4.4.0-rc1~6^2~1547 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=2aa1cb514cdce31ca68902d464cd03d31a76e998;p=qemu-upstream-unstable.git 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 Signed-off-by: Blue Swirl --- diff --git a/ui/curses.c b/ui/curses.c index b40b22307..5dc0b2c95 100644 --- a/ui/curses.c +++ b/ui/curses.c @@ -28,10 +28,6 @@ #include #endif -#ifdef __OpenBSD__ -#define resize_term resizeterm -#endif - #include "qemu-common.h" #include "console.h" #include "sysemu.h"