From 30318036c334e4fec673ec0256c0e608a3844a11 Mon Sep 17 00:00:00 2001 From: Changlong Xie Date: Fri, 1 Apr 2016 09:35:52 +0800 Subject: [PATCH] tools: add missing header for xenctrl.h Commit d275ec9c introduce ssize_t but not include relevant header, it will cause compile errors just like below: ./include/xenctrl.h:1485: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'xc_version_len' Signed-off-by: Wen Congyang Signed-off-by: Changlong Xie --- tools/libxc/include/xenctrl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/libxc/include/xenctrl.h b/tools/libxc/include/xenctrl.h index a9e4dc1540..fb5c26c4a7 100644 --- a/tools/libxc/include/xenctrl.h +++ b/tools/libxc/include/xenctrl.h @@ -31,6 +31,7 @@ #include #include #include +#include #include #include #include -- 2.30.2