From 6a53e3535a16a6fdecfb8c475b4d51251b46612f Mon Sep 17 00:00:00 2001 From: Kat Richey Date: Sun, 9 Oct 2022 11:49:06 -0500 Subject: [PATCH] Added uname objs --- makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index 7b64263..05888c5 100755 --- a/makefile +++ b/makefile @@ -44,6 +44,7 @@ ctype/isupper.o \ ctype/isxdigit.o \ ctype/tolower.o \ ctype/toupper.o \ +misc/uname.o \ stdlib/abort.o \ stdlib/bsearch.o \ stdio/printf.o \ @@ -54,9 +55,11 @@ string/memcpy.o \ string/memmove.o \ string/memset.o \ string/strcmp.o \ +string/strcpy.o \ string/strcspn.o \ string/strlen.o \ -string/strtok.o +string/strtok.o \ +unistd/gethostname.o HOSTEDOBJS=\ $(ARCH_HOSTEDOBJS) \