diff options
-rw-r--r-- | lldb/source/Host/freebsd/HostInfoFreeBSD.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp b/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp index b1c42f25f1e..9b872ea0686 100644 --- a/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp +++ b/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp @@ -11,9 +11,12 @@ #include <stdio.h> #include <string.h> +#include <sys/types.h> #include <sys/sysctl.h> #include <sys/utsname.h> +using namespace lldb_private; + bool HostInfoFreeBSD::GetOSVersion(uint32_t &major, uint32_t &minor, uint32_t &update) { |