123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef KERN_KERNEL_H
- #define KERN_KERNEL_H
- #include <stdnoreturn.h>
- #define KERNEL_NAME "x15"
- #define KERNEL_VERSION CONFIG_KERNEL_VERSION
- noreturn void kernel_main (void);
- noreturn void kernel_ap_main (void);
- #endif
|