From a68a4dff1150ae362259392d5dbf6943a8692deb Mon Sep 17 00:00:00 2001 From: ngiddings Date: Sat, 17 Apr 2021 06:26:03 -0500 Subject: [PATCH] Added new 'null pointer' status code --- 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 232f39b..4e45672 100644 --- a/include/types/status.h +++ b/include/types/status.h @@ -5,5 +5,6 @@ enum status_t S_OK = 0, S_BAD_SYSCALL, S_OUT_OF_MEMORY, - S_OUT_OF_BOUNDS + S_OUT_OF_BOUNDS, + S_NULL_POINTER }; \ No newline at end of file