From 93d8c06d2f44d1c14bb51609aad4182d59d40107 Mon Sep 17 00:00:00 2001 From: ngiddings Date: Sat, 10 Apr 2021 19:41:17 -0500 Subject: [PATCH] Added out of bounds status enum --- include/types/status.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/types/status.h b/include/types/status.h index 3366c8d..232f39b 100644 --- a/include/types/status.h +++ b/include/types/status.h @@ -4,5 +4,6 @@ enum status_t { S_OK = 0, S_BAD_SYSCALL, - S_OUT_OF_MEMORY + S_OUT_OF_MEMORY, + S_OUT_OF_BOUNDS }; \ No newline at end of file