forked from OSchip/llvm-project
12 lines
154 B
C
12 lines
154 B
C
|
|
||
|
#ifndef LLDB_HEADERS_H
|
||
|
#define LLDB_HEADERS_H
|
||
|
|
||
|
#ifdef __APPLE__
|
||
|
#include <LLDB/LLDB.h>
|
||
|
#else
|
||
|
#include "lldb/API/LLDB.h"
|
||
|
#endif
|
||
|
|
||
|
#endif // LLDB_HEADERS_H
|