summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/kit.inl.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/kit.inl.h b/include/kit.inl.h
index e16762b..b83e55c 100644
--- a/include/kit.inl.h
+++ b/include/kit.inl.h
@@ -801,13 +801,6 @@ extern "C" {
#ifndef KIT_BIGINT_SIZE
# define KIT_BIGINT_SIZE 64
#endif
-#if __STDC_VERSION__ >= 199901L
-static_assert(sizeof(u8) == 1, "u8 size should be 1 byte");
-static_assert(sizeof(u32) == 4, "u32 size should be 4 bytes");
-static_assert(sizeof(u64) == 8, "u64 size should be 8 bytes");
-static_assert(KIT_BIGINT_SIZE > 0 && (KIT_BIGINT_SIZE % 8) == 0,
- "Invalid big integer size");
-#endif
typedef struct {
u32 v[KIT_BIGINT_SIZE / 4];
} kit_bigint_t;