13 lines
181 B
C
13 lines
181 B
C
|
#ifndef __KF_LINUX_H__
|
||
|
#define __KF_LINUX_H__
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
// build support for linux
|
||
|
#include "linux/io.h"
|
||
|
|
||
|
constexpr uint8_t STACK_SIZE = 128;
|
||
|
|
||
|
|
||
|
#endif // __KF_LINUX_H__
|