#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