diff options
| author | Alexandre Raymond <cerbere@gmail.com> | 2011-06-02 23:26:49 -0400 |
|---|---|---|
| committer | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2011-06-08 09:04:29 +0100 |
| commit | 9bf0960a9adb93c38b879a2114f6c67e30427307 (patch) | |
| tree | fed16ceea03ed1c9f29e55b1eaaaac81ac74d2aa /ui/sdl.c | |
| parent | 86f69a92b163dac5ee230c8a109c3e8f37f13d38 (diff) | |
| download | focaccia-qemu-9bf0960a9adb93c38b879a2114f6c67e30427307.tar.gz focaccia-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/sdl.c')
| -rw-r--r-- | ui/sdl.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ui/sdl.c b/ui/sdl.c index 14a62d9bdd..f2bd4a035b 100644 --- a/ui/sdl.c +++ b/ui/sdl.c @@ -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" |