Files
libcpp.ko/c++_exceptions_runtime.cc
ADAM David Alan Martin aa17f3857f It seems to link, and I need Unwind now.
I'm too tired to mess with this.  I'll probably break something.
Time to go to bed.
2015-05-03 03:53:52 -04:00

19 lines
257 B
C++

extern "C"
{
#include <sys/types.h>
#include <sys/systm.h>
}
namespace cpp_runtime
{
void *catch_impl( void *e ) noexcept
{
panic( "Catch not implemented." );
}
void *catch_impl_end( void *e ) noexcept
{
panic( "Catch not implemented." );
}
}