blob: 307a7f0918194877a47423d510d05e4b90a267ce (
plain) (
tree)
|
|
/*
Copyright 2022-2023 Gabriel Jensen.
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
If a copy of the MPL was not distributed with this file, You can obtain one at <https://mozilla.org/MPL/2.0>.
*/
#include <zap/bs.h>
void zap_trap(void) {
#if zap_priv_hasbuiltin(__builtin_trap)
__builtin_trap();
#endif
for (;;) {}
}
|