From 073b5b2294a57f3483249fddb409c4366c2103a0 Mon Sep 17 00:00:00 2001 From: Shreyash Dhane <70085968+Shreyash-bit@users.noreply.github.com> Date: Tue, 24 Aug 2021 11:28:51 +0530 Subject: [PATCH] error on line number 70 : memset() not defined. memset() is function from "cstring" library, which was not included in the program. --- roundrobin_scheduling.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roundrobin_scheduling.cpp b/roundrobin_scheduling.cpp index 2c2afe0..2c1585b 100644 --- a/roundrobin_scheduling.cpp +++ b/roundrobin_scheduling.cpp @@ -2,6 +2,7 @@ #include #include #include +#include using namespace std; struct process { @@ -160,4 +161,4 @@ TAT = CT - AT WT = TAT - BT RT = ST - AT -*/ \ No newline at end of file +*/