2024-08-15 10:30:26 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
|
|
|
|
|
#include <linux/bug.h>
|
|
|
|
|
|
2026-01-05 12:42:16 +00:00
|
|
|
__rust_helper __noreturn void rust_helper_BUG(void)
|
2024-08-15 10:30:26 +00:00
|
|
|
{
|
|
|
|
|
BUG();
|
|
|
|
|
}
|
2025-05-02 18:45:36 +09:00
|
|
|
|
2026-01-05 12:42:16 +00:00
|
|
|
__rust_helper bool rust_helper_WARN_ON(bool cond)
|
2025-05-02 18:45:36 +09:00
|
|
|
{
|
|
|
|
|
return WARN_ON(cond);
|
|
|
|
|
}
|