summaryrefslogtreecommitdiffstats
path: root/lib/jove.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/jove.h')
-rw-r--r--lib/jove.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/jove.h b/lib/jove.h
deleted file mode 100644
index 6015112..0000000
--- a/lib/jove.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef JOVE_LIB_JOVE_H
-#define JOVE_LIB_JOVE_H 1
-
-#define ALWAYS_INLINE inline __attribute__((always_inline))
-#define PAGEALIGN __attribute__((aligned(0x1000)))
-
-#define LOG2(n) (31 - __builtin_clz(n))
-
-extern void *_kernel_start;
-extern void *_kernel_end;
-
-__attribute__((noreturn)) void _kpanic(const char *file, int line, const char *fmt, ...);
-#define kpanic(...) _kpanic(__FILE__, __LINE__, __VA_ARGS__)
-
-#endif