summaryrefslogtreecommitdiff
path: root/kernel/kernel.h
blob: 2929a287c798b4da2809e26b38e892e90c27aee4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef FOOLOS_KERNEL_H
#define FOOLOS_KERNEL_H

#define KERNEL_VERSION "FoolOs 0.2.1"

#include "fifo.h"

typedef struct fool_os_struct
{

    fifo std_in;
    fifo std_out;

}fool_os;

fool_os *get_fool();


#endif