summaryrefslogtreecommitdiff
path: root/src/cxxabi.h
diff options
context:
space:
mode:
authorC <asura@fubar.(none)>2011-05-22 02:56:49 +0700
committerC <asura@fubar.(none)>2011-05-22 02:56:49 +0700
commitd54259432e7356448a1975dadb64cf97b528b340 (patch)
treea9af293817200f01ef9f580c5469ee4b7fa72bfc /src/cxxabi.h
parent7b63760eb6741acb1a7961eed739f52599075cd7 (diff)
downloadlibcxxrt-d54259432e7356448a1975dadb64cf97b528b340.tar.gz
libcxxrt-d54259432e7356448a1975dadb64cf97b528b340.tar.bz2
libcxxrt-d54259432e7356448a1975dadb64cf97b528b340.tar.xz
Revert "Replaced libelftc's demangler with the one from libc++abi."
This reverts commit 958237cf33ae913f7d2e995d48d1f8fdccec5e5b.
Diffstat (limited to 'src/cxxabi.h')
-rw-r--r--src/cxxabi.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/cxxabi.h b/src/cxxabi.h
deleted file mode 100644
index 80f4dce..0000000
--- a/src/cxxabi.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef __CXX_ABI_H_INCLUDED__
-#define __CXX_ABI_H_INCLUDED__
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-
-/**
- * Demangles a C++ symbol or type name. The buffer, if non-NULL, must be
- * allocated with malloc() and must be *n bytes or more long. This function
- * may call realloc() on the value pointed to by buf, and will return the
- * length of the string via *n.
- *
- * The value pointed to by status is set to one of the following:
- *
- * 0: success
- * -1: memory allocation failure
- * -2: invalid mangled name
- * -3: invalid arguments
- */
-char* __cxa_demangle(const char* mangled_name,
- char* buf,
- size_t* n,
- int* status);
-#ifdef __cplusplus
-}
-#endif
-
-#endif // __CXX_ABI_H_INCLUDED__