19 lines
391 B
C++
19 lines
391 B
C++
/**
|
|
* PROJECT: ExectOS
|
|
* COPYRIGHT: See COPYING.md in the top level directory
|
|
* FILE: xtoskrnl/includes/se.hh
|
|
* DESCRIPTION: Kernel Security
|
|
* DEVELOPERS: Aiken Harris <harraiken91@gmail.com>
|
|
*/
|
|
|
|
#ifndef __XTOSKRNL_SE_HH
|
|
#define __XTOSKRNL_SE_HH
|
|
|
|
#include <xtos.hh>
|
|
|
|
#include <se/descript.hh>
|
|
#include <se/privileg.hh>
|
|
|
|
|
|
#endif /* __XTOSKRNL_SE_HH */
|