mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-25 22:14:37 +00:00
12 lines
236 B
C
12 lines
236 B
C
#ifndef __FENNIX_KERNEL_KERNEL_H__
|
|
#define __FENNIX_KERNEL_KERNEL_H__
|
|
|
|
#include <types.h>
|
|
#include <boot/binfo.h>
|
|
|
|
extern struct BootInfo *bInfo;
|
|
|
|
EXTERNC void kernel_entry(struct BootInfo *Info);
|
|
|
|
#endif // !__FENNIX_KERNEL_KERNEL_H__
|