summaryrefslogtreecommitdiff
path: root/src/kernel/panic.h
blob: 7d2e9dfe3f0f274adceff1462a3cf9dc1d3e1a53 (plain) (blame)
1
2
3
4
5
6
7
8
#ifndef PANIC_H
#define PANIC_H

#include <stdint.h>

void panic(char *message) __attribute__ ((noreturn));

#endif