From 0275f654e6e3f89107047a5fa666b426ab864ce2 Mon Sep 17 00:00:00 2001 From: MANVENDRA RAJPUROHIT <145118895+manvendrarajpurohit@users.noreply.github.com> Date: Sat, 25 Apr 2026 23:30:09 +0530 Subject: [PATCH] Update clean target to remove fsync --- 05/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/05/Makefile b/05/Makefile index ce8640d..295a78f 100644 --- a/05/Makefile +++ b/05/Makefile @@ -1,7 +1,7 @@ all: io fsync clean: - rm -f io + rm -f io fsync io: io.c common.h gcc -o io io.c -Wall