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

18 lines
238 B
C++
Raw Normal View History

2026-07-17 14:03:00 +08:00
#include "il2cpp-config.h"
#include "os/CrashHelpers.h"
#if IL2CPP_TARGET_POSIX && !IL2CPP_USE_GENERIC_CRASH_HELPERS
namespace il2cpp
{
namespace os
{
void CrashHelpers::CrashImpl()
{
__builtin_trap();
}
}
}
#endif