Files
mango/include/socks/panic.h

13 lines
235 B
C

#ifndef SOCKS_PANIC_H_
#define SOCKS_PANIC_H_
#include <socks/compiler.h>
struct cpu_context;
#define panic(...) panic_irq(NULL, __VA_ARGS__)
extern void __noreturn panic_irq(struct cpu_context *ctx, const char *fmt, ...);
#endif