diff options
author | Alexandre Raymond | 2011-06-03 05:26:49 +0200 |
---|---|---|
committer | Stefan Hajnoczi | 2011-06-08 10:04:29 +0200 |
commit | 9bf0960a9adb93c38b879a2114f6c67e30427307 (patch) | |
tree | fed16ceea03ed1c9f29e55b1eaaaac81ac74d2aa /ui | |
parent | Fix compilation warning due to missing header for sigaction (diff) | |
download | qemu-9bf0960a9adb93c38b879a2114f6c67e30427307.tar.gz qemu-9bf0960a9adb93c38b879a2114f6c67e30427307.tar.xz qemu-9bf0960a9adb93c38b879a2114f6c67e30427307.zip |
Fix compilation warning due to missing header for sigaction (followup)
This patch removes all references to signal.h when qemu-common.h is included
as they become redundant.
Signed-off-by: Alexandre Raymond <cerbere@gmail.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'ui')
-rw-r--r-- | ui/curses.c | 1 | ||||
-rw-r--r-- | ui/sdl.c | 4 |
2 files changed, 0 insertions, 5 deletions
diff --git a/ui/curses.c b/ui/curses.c index 82bc614040..d29b6cf874 100644 --- a/ui/curses.c +++ b/ui/curses.c @@ -24,7 +24,6 @@ #include <curses.h> #ifndef _WIN32 -#include <signal.h> #include <sys/ioctl.h> #include <termios.h> #endif @@ -28,10 +28,6 @@ #include <SDL.h> #include <SDL_syswm.h> -#ifndef _WIN32 -#include <signal.h> -#endif - #include "qemu-common.h" #include "console.h" #include "sysemu.h" |