Initial C++ runtime work. Much more to do.
This commit is contained in:
13
c++_exceptions_runtime.cc
Normal file
13
c++_exceptions_runtime.cc
Normal file
@ -0,0 +1,13 @@
|
||||
extern "C"
|
||||
{
|
||||
#include <sys/types.h>
|
||||
#include <sys/systm.h>
|
||||
}
|
||||
|
||||
namespace cpp_runtime
|
||||
{
|
||||
void *catch_impl( void *e ) noexcept
|
||||
{
|
||||
panic( "Catch not implemented." );
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user