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

#include <types.h>

extern uint64_t panic_rsp;

__attribute__((noreturn)) void panic(const char *error, ...);

#endif