aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Core/CxaDemangle.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Core/CxaDemangle.h')
-rw-r--r--include/lldb/Core/CxaDemangle.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/lldb/Core/CxaDemangle.h b/include/lldb/Core/CxaDemangle.h
new file mode 100644
index 000000000000..0cd54fb36a32
--- /dev/null
+++ b/include/lldb/Core/CxaDemangle.h
@@ -0,0 +1,21 @@
+//===-- CxaDemangle.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_CxaDemangle_h_
+#define liblldb_CxaDemangle_h_
+
+namespace lldb_private
+{
+
+ char*
+ __cxa_demangle(const char* mangled_name, char* buf, size_t* n, int* status);
+
+}
+
+#endif