blob: b6eccb8a6a39dce2bb5c61e2bb3e099eada88137 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef FOOLOS_KERNEL_H
#define FOOLOS_KERNEL_H
#define KERNEL_VERSION "FoolOs 0.2.1"
#include "terminal/vt52.h";
typedef struct fool_os_struct
{
vt52_tty *tty1;
}fool_os;
fool_os *get_fool();
#endif
|