From: Roger Pau Monne Date: Mon, 2 Jun 2014 15:08:15 +0000 (+0200) Subject: console: add FreeBSD includes X-Git-Tag: 4.5.0-rc1~661 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=993ea0862e10b7cf4b0c32b9fc2472428d2a2778;p=xen.git console: add FreeBSD includes Add FreeBSD specific includes to the console daemon. Signed-off-by: Roger Pau Monné Cc: Ian Jackson Acked-by: Ian Campbell --- diff --git a/tools/console/daemon/io.c b/tools/console/daemon/io.c index 007ecf41c3..46719a86bf 100644 --- a/tools/console/daemon/io.c +++ b/tools/console/daemon/io.c @@ -37,12 +37,16 @@ #include #include #include +#include #if defined(__NetBSD__) || defined(__OpenBSD__) #include #elif defined(__linux__) #include #elif defined(__sun__) #include +#elif defined(__FreeBSD__) +#include +#include #endif #define MAX(a, b) (((a) > (b)) ? (a) : (b))