aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Egger <Christoph.Egger@amd.com>2011-01-11 18:44:41 +0000
committerChristoph Egger <Christoph.Egger@amd.com>2011-01-11 18:44:41 +0000
commitcdca3dd8ed49c4e18b7442c330fecd8acfec0dbb (patch)
tree3b14cce46230025b0fb1e2ef54e2bf295714528a
parent9bdd55b7874963760065876f4e770b102d991131 (diff)
downloadxen-cdca3dd8ed49c4e18b7442c330fecd8acfec0dbb.tar.gz
xen-cdca3dd8ed49c4e18b7442c330fecd8acfec0dbb.tar.bz2
xen-cdca3dd8ed49c4e18b7442c330fecd8acfec0dbb.zip
libxl: fix missing include of <signal.h>
libxl_dm.c:713: warning: implicit declaration of function 'kill' Signed-off-by: Christoph Egger <Christoph.Egger@amd.com> Committed-by: Ian Jackson <ian.jackson@eu.citrix.com>
-rw-r--r--tools/libxl/libxl_dm.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c
index cffec4b515..6a34dcd4f1 100644
--- a/tools/libxl/libxl_dm.c
+++ b/tools/libxl/libxl_dm.c
@@ -20,6 +20,7 @@
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
+#include <signal.h>
#include <unistd.h>
#include <fcntl.h>
#include "libxl_utils.h"