45 lines
1.2 KiB
C
45 lines
1.2 KiB
C
//----------------------------------------------------------------------------//
|
|
// GNU GPL OS/K //
|
|
// //
|
|
// Authors: spectral` //
|
|
// NeoX //
|
|
// //
|
|
// Desc: Kaleid Kernel main include file //
|
|
//----------------------------------------------------------------------------//
|
|
|
|
#ifndef _KALBASE_H
|
|
#include <kalbase.h>
|
|
#endif
|
|
|
|
#ifndef _KALEXT_H
|
|
#include <kalext.h>
|
|
#endif
|
|
|
|
//------------------------------------------//
|
|
|
|
#ifndef _KALKERN_H
|
|
#define _KALKERN_H
|
|
|
|
//------------------------------------------//
|
|
// Kernel headers //
|
|
//------------------------------------------//
|
|
|
|
#ifndef _KALKERN_BASE_H
|
|
#include <kernel/base.h>
|
|
#endif
|
|
|
|
#ifndef _KALKERN_TERMINAL_H
|
|
#include <kernel/terminal.h>
|
|
#endif
|
|
|
|
// not ready for kernel compilation
|
|
#ifndef _KALEID_KERNEL
|
|
#ifndef _KALKERN_SCHED_H
|
|
#include <kernel/sched.h>
|
|
#endif
|
|
#endif
|
|
|
|
//------------------------------------------//
|
|
|
|
#endif
|