diff options
Diffstat (limited to 'tools/driver/Platform.h')
-rw-r--r-- | tools/driver/Platform.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/driver/Platform.h b/tools/driver/Platform.h index 064491503e0c..cf6c4ec8e146 100644 --- a/tools/driver/Platform.h +++ b/tools/driver/Platform.h @@ -9,12 +9,17 @@ #ifndef lldb_Platform_h_ #define lldb_Platform_h_ +#include "lldb/Host/Config.h" + #if defined(_WIN32) #include <io.h> #if defined(_MSC_VER) #include <signal.h> #endif +#if HAVE_SYS_TYPES_H +#include <sys/types.h> +#endif #include "lldb/Host/windows/windows.h" #include <inttypes.h> |