Files
banan-os/kernel/kernel/Panic.cpp
Bananymous 9c36d7c338 BAN/Kernel: Rework assertion/panic system
BAN/Assert.h does not need any includes meaning it can be included
anywhere without problems.
2024-03-04 11:41:54 +02:00

7 lines
82 B
C++

#include <kernel/Panic.h>
namespace Kernel
{
volatile bool g_paniced = false;
}