2019-01-01 13:09:57 +01:00
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
// GNU GPL OS/K //
|
|
|
|
// //
|
|
|
|
// Authors: spectral` //
|
|
|
|
// NeoX //
|
|
|
|
// //
|
|
|
|
// Desc: Kaleid Kernel main include file //
|
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
|
|
|
|
//------------------------------------------//
|
|
|
|
// Dependencies //
|
|
|
|
//------------------------------------------//
|
|
|
|
|
|
|
|
#ifndef _KALEID_H
|
|
|
|
#include <kaleid.h>
|
|
|
|
#endif
|
|
|
|
|
2019-01-14 14:31:49 +01:00
|
|
|
//------------------------------------------//
|
|
|
|
// Start of header //
|
|
|
|
//------------------------------------------//
|
|
|
|
|
|
|
|
#ifndef _KALKERN_H
|
|
|
|
#define _KALKERN_H
|
2019-01-01 13:09:57 +01:00
|
|
|
|
|
|
|
//------------------------------------------//
|
2019-01-14 14:31:49 +01:00
|
|
|
// Kernel headers //
|
2019-01-01 13:09:57 +01:00
|
|
|
//------------------------------------------//
|
|
|
|
|
2019-01-14 14:31:49 +01:00
|
|
|
#ifndef _KALKERN_BASE_H
|
|
|
|
#include <kernel/kernbase.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _KALKERN_LOCKS_H
|
|
|
|
#include <kernel/kernlocks.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _KALKERN_TERM_H
|
|
|
|
#include <kernel/kernterm.h>
|
|
|
|
#endif
|
2019-01-01 13:09:57 +01:00
|
|
|
|
|
|
|
//------------------------------------------//
|
2019-01-14 14:31:49 +01:00
|
|
|
// End of header //
|
2019-01-01 13:09:57 +01:00
|
|
|
//------------------------------------------//
|
|
|
|
|
|
|
|
#endif
|