Include unistd.h and increase fasm memory

This commit is contained in:
Ivan Baravy 2021-12-13 17:04:42 +03:00
parent 5eb6770760
commit 25979e4a5b
2 changed files with 2 additions and 1 deletions

View File

@ -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 \

View File

@ -25,6 +25,7 @@
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <unistd.h>
#include <assert.h>
#include <time.h>
#include <errno.h>