diff --git a/core/include/blue/core/status.h b/core/include/blue/core/status.h index f2ef040..9fd2b87 100644 --- a/core/include/blue/core/status.h +++ b/core/include/blue/core/status.h @@ -3,10 +3,10 @@ #include -#define B_OK(status) ((status) == B_SUCCESS) +#define B_OK(status) ((status) == B_SUCCESS) #define B_ERR(status) ((status) != B_SUCCESS) -typedef enum { +typedef enum b_status { B_SUCCESS = 0x00u, B_ERR_NO_MEMORY, B_ERR_OUT_OF_BOUNDS,