aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-05-02 21:54:35 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-05-02 21:54:35 -0400
commit55fae189fffc86f07a3448370f0a746670819712 (patch)
tree74c846943fc469590c01aca296a27a5fd0e2ad03 /include
parent6ff8bb11774c51fd341b7699a3938fd894995fbf (diff)
feat: Working and tested openssl impl & defaults
Diffstat (limited to 'include')
-rw-r--r--include/nc-util.h4
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