Rename assert to CHECK.
To avoid confusion with the usual definition of assert in C which will
sometimes be compiled out and the expression not evaluated. CHECK will
always be evaluated and tested.
Change-Id: I6a36359ecdecdada5c12ebf70c67cffec9574f7d
diff --git a/src/api.c b/src/api.c
index dae8683..fea419a 100644
--- a/src/api.c
+++ b/src/api.c
@@ -19,11 +19,12 @@
#include "hf/arch/cpu.h"
#include "hf/arch/timer.h"
-#include "hf/assert.h"
+#include "hf/check.h"
#include "hf/dlog.h"
#include "hf/mm.h"
#include "hf/spci.h"
#include "hf/spinlock.h"
+#include "hf/static_assert.h"
#include "hf/std.h"
#include "hf/vm.h"