summaryrefslogtreecommitdiff
path: root/src/aux.cc
diff options
context:
space:
mode:
authoranonymous <local@localhost>2010-06-30 19:11:55 +0700
committeranonymous <local@localhost>2010-07-02 22:14:18 +0700
commit16c253aab349547b256482e6dcc86029d8fe2eda (patch)
tree0d5dbf3a058ae9cb7e2dbe68f0ce79e2e70f1dd1 /src/aux.cc
parent14a33592c267fe9dc277412444525f3fcfe14f15 (diff)
downloadlibcxxrt-16c253aab349547b256482e6dcc86029d8fe2eda.tar.gz
libcxxrt-16c253aab349547b256482e6dcc86029d8fe2eda.tar.bz2
libcxxrt-16c253aab349547b256482e6dcc86029d8fe2eda.tar.xz
1) Static library is added;
2) Aux std functions are added 3) Memory operators are added
Diffstat (limited to 'src/aux.cc')
-rw-r--r--src/aux.cc13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/aux.cc b/src/aux.cc
new file mode 100644
index 0000000..c1590e5
--- /dev/null
+++ b/src/aux.cc
@@ -0,0 +1,13 @@
+
+#include "stdexcept.h"
+
+extern "C" void __cxa_bad_cast()
+{
+ throw std::bad_cast();
+}
+
+extern "C" void __cxa_bad_typeid()
+{
+ throw std::bad_typeid();
+}
+