summaryrefslogtreecommitdiffstats
path: root/include/assert.h
blob: f2082354da357decc001d7d68be133226e0ab1a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#ifndef JOVE_LIB_ASSERT_H
#define JOVE_LIB_ASSERT_H 1

#include "jove.h"

#define assert(cond) \
    if(!(cond)) \
        kpanic("Assert failure : %s\n", #cond)

#endif