From 25979e4a5bcaf0a261a5fbd844c5fd2075d7e69f Mon Sep 17 00:00:00 2001 From: Ivan Baravy Date: Mon, 13 Dec 2021 17:04:42 +0300 Subject: [PATCH] Include unistd.h and increase fasm memory --- makefile | 2 +- shell.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index 322274e..480d44d 100644 --- a/makefile +++ b/makefile @@ -8,7 +8,7 @@ endif FASM_EXE ?= fasm FASM_INCLUDE=$(KOLIBRIOS)/kernel/trunk;$(KOLIBRIOS)/programs/develop/libraries/libcrash/hash -FASM_FLAGS=-dUEFI=1 -dextended_primary_loader=1 -dUMKA=1 -dHOST=$(HOST) +FASM_FLAGS=-dUEFI=1 -dextended_primary_loader=1 -dUMKA=1 -dHOST=$(HOST) -m 2000000 CC ?= gcc WARNINGS_COMMON=-Wall -Wextra \ diff --git a/shell.c b/shell.c index cecf5b6..c54f771 100644 --- a/shell.c +++ b/shell.c @@ -25,6 +25,7 @@ #include #include #include +#include #include #include #include