From 785ee472a35148486f024c85191df8364ed4f35d Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Thu, 5 Sep 2013 15:39:09 +0000 Subject: [PATCH] sysctl.h does not exist under GNU/HURD (like windows) llvm-svn: 190057 --- lldb/source/Host/common/Host.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lldb/source/Host/common/Host.cpp b/lldb/source/Host/common/Host.cpp index 9bf61ad24c9b..deacb6884d08 100644 --- a/lldb/source/Host/common/Host.cpp +++ b/lldb/source/Host/common/Host.cpp @@ -22,6 +22,10 @@ #include #include #include +#endif + +#if !defined (__GNU__) && !defined (_WIN32) +// Does not exist under GNU/HURD or Windows #include #endif