summaryrefslogtreecommitdiff
path: root/include/kernel/panic.h
blob: adfcd71243b9bfdf310b9627d58ab2c80ea9a70e (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef KERNEL_PANIC_H
#define KERNEL_PANIC_H

#include <kernel/asm.h>
#include <stdint.h>
#include <stddef.h>

void panic(const char *str);

#endif