From 42c4adeff4a6aedfba30e22f71800c1b73942923 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Mon, 4 Apr 2011 20:20:16 -0700 Subject: [PATCH] Add #include to xcb_conn.c Solves compiler warning on Solaris: "xcb_conn.c", line 304: warning: implicit function declaration: shutdown Also provides system definition of SHUT_RDWR on Solaris 11. Signed-off-by: Alan Coopersmith Reviewed-by: Jamey Sharp --- src/xcb_conn.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/xcb_conn.c b/src/xcb_conn.c index a017c20..3ab5385 100644 --- a/src/xcb_conn.c +++ b/src/xcb_conn.c @@ -44,6 +44,7 @@ #ifdef _WIN32 #include "xcb_windefs.h" #else +#include #include #endif /* _WIN32 */ -- 2.34.1