From 127a21f6b15c2d48fd39bb4b0d89c60c8a647edb Mon Sep 17 00:00:00 2001 From: bouzenaali Date: Sat, 9 Dec 2023 20:26:01 +0100 Subject: [PATCH 1/2] fix: correct spelling mistake in problem 5 --- Problem 5/MyShell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Problem 5/MyShell.c b/Problem 5/MyShell.c index 8195572..947bb7a 100644 --- a/Problem 5/MyShell.c +++ b/Problem 5/MyShell.c @@ -4,7 +4,7 @@ * Description: Simple shell application. */ -#include "Myshell.h" +#include "MyShell.h" int main(int argc, char const *argv[]) { /* Create buffer for command */ From 1a7ef1c130f2150a97cf3b279ec609bc1f7c8239 Mon Sep 17 00:00:00 2001 From: bouzenaali Date: Sat, 9 Dec 2023 20:30:54 +0100 Subject: [PATCH 2/2] fix: add the signal.h llibrary --- Problem 7/DupShell.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Problem 7/DupShell.c b/Problem 7/DupShell.c index 169c6cf..074f6da 100644 --- a/Problem 7/DupShell.c +++ b/Problem 7/DupShell.c @@ -5,6 +5,7 @@ */ #include "DupShell.h" +#include int main(int argc, char const *argv[]) { /* Create buffer for command */