From e33c9178421d5aa4ed2f690093aef1209e665815 Mon Sep 17 00:00:00 2001 From: Vinuthna-G-1091 Date: Sat, 25 Apr 2026 14:23:24 +0530 Subject: [PATCH 1/2] fixed bug, missing header for assert is added --- 08/p3.c | 1 + 1 file changed, 1 insertion(+) diff --git a/08/p3.c b/08/p3.c index 71791d7..091ed9d 100644 --- a/08/p3.c +++ b/08/p3.c @@ -3,6 +3,7 @@ #include #include #include +#include int main(int argc, char *argv[]) From 28c6cf37610b6ebce2b383f2662882685b9a93e6 Mon Sep 17 00:00:00 2001 From: Vinuthna-G-1091 Date: Sat, 25 Apr 2026 14:51:22 +0530 Subject: [PATCH 2/2] added extra files in make clean created while running executables --- 08/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/08/Makefile b/08/Makefile index 174d671..e49ab88 100644 --- a/08/Makefile +++ b/08/Makefile @@ -1,4 +1,5 @@ all: p1 p2 p3 p4 fork-cow fork-fd fork-fd2 pipe dup nodup clean: - rm p1 p2 p3 p4 fork-cow fork-fd fork-fd2 pipe dup nodup + rm -f p1 p2 p3 p4 fork-cow fork-fd fork-fd2 pipe dup nodup \ + dup.txt nodup.txt fd.txt fd2.txt p4.output \ No newline at end of file