diff options
author | vnugent <public@vaughnnugent.com> | 2024-05-02 21:54:35 -0400 |
---|---|---|
committer | vnugent <public@vaughnnugent.com> | 2024-05-02 21:54:35 -0400 |
commit | 55fae189fffc86f07a3448370f0a746670819712 (patch) | |
tree | 74c846943fc469590c01aca296a27a5fd0e2ad03 /include/nc-util.h | |
parent | 6ff8bb11774c51fd341b7699a3938fd894995fbf (diff) |
feat: Working and tested openssl impl & defaults
Diffstat (limited to 'include/nc-util.h')
-rw-r--r-- | include/nc-util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/nc-util.h b/include/nc-util.h index 6a0e149..8fb74ff 100644 --- a/include/nc-util.h +++ b/include/nc-util.h @@ -63,9 +63,9 @@ #include <stdint.h> #if SIZE_MAX < UINT32_MAX - #define _sizet_check(x) if(x > SIZE_MAX) return CSTATUS_FAIL; + #define _overflow_check(x) if(x > SIZE_MAX) return CSTATUS_FAIL; #else - #define _sizet_check(x) + #define _overflow_check(x) #endif typedef struct memory_span_struct |