aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Host/PosixApi.h
blob: 23a291c401def78380f727e8de6f3b1dbc7c2abf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//===-- PosixApi.h ----------------------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef liblldb_Host_PosixApi_h
#define liblldb_Host_PosixApi_h

// This file defines platform specific functions, macros, and types necessary
// to provide a minimum level of compatibility across all platforms to rely
// on various posix api functionality.

#include "llvm/Support/Compiler.h"

#if defined(LLVM_ON_WIN32)
#include "lldb/Host/windows/PosixApi.h"
#endif

#endif