blob: 5628e7d7b7a6998d38fbb716084d9aac7f9d646a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* ========================================
Copyright (C) 2025 Amlal El Mahrouss, Licensed under the Apache 2.0 license.
======================================== */
#include <LibC++/__abi.h>
#include <LibC++/base_process.h>
static const int32_t __unreachable_code = 34;
extern "C" void __compilerkit_unreachable(void) {
std::base_process::signal(__unreachable_code);
while (1);
}
|