I'm too tired to mess with this. I'll probably break something. Time to go to bed.
19 lines
257 B
C++
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." );
|
|
}
|
|
}
|