diff options
| author | Michal Idziorek <m.i@gmx.at> | 2014-11-23 14:00:52 +0100 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2014-11-23 14:00:52 +0100 |
| commit | 6a3ef39feb635f529da9e36975ba77a26c1ff3b4 (patch) | |
| tree | 4a65630f27d0779a5bc3cce1927b13465d10b466 /kernel/kernel.c | |
| parent | 608e66827d8aee1e55424c667777fac017501def (diff) | |
passing argv and argc to main, and fixed ELF load.
Diffstat (limited to 'kernel/kernel.c')
| -rw-r--r-- | kernel/kernel.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/kernel/kernel.c b/kernel/kernel.c index 45c8fbb..6daa625 100644 --- a/kernel/kernel.c +++ b/kernel/kernel.c @@ -9,11 +9,13 @@ #endif #define FOOLOS_MODULE_NAME "kernel" + +#include <stdint.h> + #include "config.h" #include "asm/asm.h" #include "lib/logger/log.h" -#include "lib/int/stdint.h" #include "lib/bool/bool.h" #include "lib/buffer/ringbuffer.h" @@ -34,7 +36,6 @@ #include "task.h" - #ifdef FOOLOS_COMPILE_FLOPPY #include "floppy.h" #endif |
