]> git.corax.cc Git - corax/commitdiff
libc: Include unistd.c in the compilation
authorMatthias Kruk <m@m10k.eu>
Sat, 1 Aug 2020 06:06:24 +0000 (15:06 +0900)
committerMatthias Kruk <m@m10k.eu>
Sat, 8 Aug 2020 09:49:53 +0000 (18:49 +0900)
libc/Makefile

index 2383060c257b4708dd3e037de102f969ab628bb6..074199a03432a40f27e9c1b7b36107ec6109e353 100644 (file)
@@ -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)