mirror of
https://gitlab.os-k.eu/os-k-team/os-k.git
synced 2023-08-25 14:03:10 +02:00
46 lines
1.5 KiB
C
46 lines
1.5 KiB
C
//----------------------------------------------------------------------------//
|
|
// GNU GPL OS/K //
|
|
// //
|
|
// Authors: spectral` //
|
|
// NeoX //
|
|
// //
|
|
// Desc: Kaleid Kernel main include file //
|
|
//----------------------------------------------------------------------------//
|
|
|
|
//------------------------------------------//
|
|
// Dependencies //
|
|
//------------------------------------------//
|
|
|
|
#ifndef _KALEID_H
|
|
#include <kaleid.h>
|
|
#endif
|
|
|
|
//------------------------------------------//
|
|
// Start of header //
|
|
//------------------------------------------//
|
|
|
|
#ifndef _KALKERN_H
|
|
#define _KALKERN_H
|
|
|
|
//------------------------------------------//
|
|
// Kernel headers //
|
|
//------------------------------------------//
|
|
|
|
#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
|
|
|
|
//------------------------------------------//
|
|
// End of header //
|
|
//------------------------------------------//
|
|
|
|
#endif
|