From 0684e43acdcbb8d520c4c1170af0b9157a3af32e Mon Sep 17 00:00:00 2001 From: "antnh6@gmail.com" <antnh6@gmail.com> Date: Mon, 28 May 2018 09:33:54 -0400 Subject: [PATCH] fixed typo --- include/syscall.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/syscall.h b/include/syscall.h index 2e740f6..bd5ecea 100644 --- a/include/syscall.h +++ b/include/syscall.h @@ -18,11 +18,11 @@ void Pass(); void Exit(); -int Send (int TaskID, void* Msg, int MsgLen, void* Reply, int ReplyLen) {}; +int Send (int TaskID, void* Msg, int MsgLen, void* Reply, int ReplyLen); -int Receive (int TaskID, void* Msg, int MsgLen) {}; +int Receive (int TaskID, void* Msg, int MsgLen); -int Reply (int TaskID, void* Reply, int ReplyLen) {}; +int Reply (int TaskID, void* Reply, int ReplyLen); #endif -- GitLab