]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - include/lldb/Host/PosixApi.h
Vendor import of lldb trunk r338150:
[FreeBSD/FreeBSD.git] / include / lldb / Host / PosixApi.h
1 //===-- PosixApi.h ----------------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef liblldb_Host_PosixApi_h
11 #define liblldb_Host_PosixApi_h
12
13 // This file defines platform specific functions, macros, and types necessary
14 // to provide a minimum level of compatibility across all platforms to rely on
15 // various posix api functionality.
16
17 #if defined(_WIN32)
18 #include "lldb/Host/windows/PosixApi.h"
19 #else
20 #include <unistd.h>
21 #include <csignal>
22 #endif
23
24 #endif