From 74608ffe1e49e83315874613a9d3e6a3f5955c0c Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Sat, 1 Aug 2020 15:06:24 +0900 Subject: [PATCH] libc: Include unistd.c in the compilation --- libc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/Makefile b/libc/Makefile index 2383060..074199a 100644 --- a/libc/Makefile +++ b/libc/Makefile @@ -1,5 +1,5 @@ OUTPUT = libc.a -OBJECTS = syscall.o string.o signal.o start.o stdio.o string_ia32.o +OBJECTS = syscall.o string.o signal.o start.o stdio.o string_ia32.o unistd.o PHONY = clean INCLUDES = -I../include -I.. CFLAGS = -m32 -Wall -nostdlib -nodefaultlibs -nostartfiles -ffreestanding $(INCLUDES) -- 2.47.3