blob: e2dda98bfd04a50365b83ba717f7b8c73c2a7432 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef FOOLOS_KERNEL_H
#define FOOLOS_KERNEL_H
#include <stdint.h> //needed for uint16_t
#define KERNEL_VERSION "Welcome to FoolOs 0.0.7"
#define false 0
#define true !false
#define bool uint8_t
// #define DEBUG
#endif
|