7 lines
114 B
C
7 lines
114 B
C
#pragma once
|
|
#include "sys/panic.h"
|
|
|
|
#define assert(c, m, ...) \
|
|
if (!(c)) \
|
|
panic(m, ##__VA_ARGS__);
|