Files
RedHotRoast-ios/HybridCLRData/LocalIl2CppData-OSXEditor/il2cpp/libil2cpp/os/Generic/CrashHelpers.cpp
T

21 lines
226 B
C++
Raw Normal View History

2026-07-17 14:03:00 +08:00
#include "il2cpp-config.h"
#if IL2CPP_USE_GENERIC_CRASH_HELPERS
#include "os/CrashHelpers.h"
#include <cstdlib>
namespace il2cpp
{
namespace os
{
void CrashHelpers::CrashImpl()
{
abort();
}
}
}
#endif