diff options
| author | Michal Idziorek <m.i@gmx.at> | 2015-05-18 01:31:58 +0200 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2015-05-18 01:31:58 +0200 |
| commit | fe79552d9fcfd60d8c2bb828c6b93cf471ef7b75 (patch) | |
| tree | 7bf842857ce4f485101848292405a96f322fe374 /kernel/kernel.h | |
| parent | db22b587966b4a4eaa47536f32ca812532446bcb (diff) | |
fifo interface
Diffstat (limited to 'kernel/kernel.h')
| -rw-r--r-- | kernel/kernel.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/kernel/kernel.h b/kernel/kernel.h index fb4e44d..2929a28 100644 --- a/kernel/kernel.h +++ b/kernel/kernel.h @@ -3,12 +3,13 @@ #define KERNEL_VERSION "FoolOs 0.2.1" -#include "fs/fifo.h"; +#include "fifo.h" typedef struct fool_os_struct { - fifo fifo_stdin; - fifo fifo_stdout; + + fifo std_in; + fifo std_out; }fool_os; |
