[Lldb-commits] [lldb] r185147 - Move sys/sysctl.h include after its dependency sys/types.h

Ed Maste emaste at freebsd.org
Fri Jun 28 05:35:08 PDT 2013


Author: emaste
Date: Fri Jun 28 07:35:08 2013
New Revision: 185147

URL: http://llvm.org/viewvc/llvm-project?rev=185147&view=rev
Log:
Move sys/sysctl.h include after its dependency sys/types.h


Modified:
    lldb/trunk/source/Host/common/Host.cpp

Modified: lldb/trunk/source/Host/common/Host.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/common/Host.cpp?rev=185147&r1=185146&r2=185147&view=diff
==============================================================================
--- lldb/trunk/source/Host/common/Host.cpp (original)
+++ lldb/trunk/source/Host/common/Host.cpp Fri Jun 28 07:35:08 2013
@@ -16,8 +16,8 @@
 #include <limits.h>
 #include <netdb.h>
 #include <pwd.h>
-#include <sys/sysctl.h>
 #include <sys/types.h>
+#include <sys/sysctl.h>
 #include <unistd.h>
 
 #if defined (__APPLE__)





More information about the lldb-commits mailing list