From 2634720f858123d2b7fcc1785483e4359c2269d2 Mon Sep 17 00:00:00 2001 From: Roman Khlopkov <roman.khlopkov@demlabs.net> Date: Thu, 16 Dec 2021 16:34:50 +0300 Subject: [PATCH] [-] Compile warnings --- dap-sdk/core/include/dap_math_ops.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dap-sdk/core/include/dap_math_ops.h b/dap-sdk/core/include/dap_math_ops.h index e04558d5e9..339ec574e7 100755 --- a/dap-sdk/core/include/dap_math_ops.h +++ b/dap-sdk/core/include/dap_math_ops.h @@ -882,4 +882,8 @@ void bindivmod128(uint128_t M, uint128_t N, uint128_t* Q, uint128_t* R) R->hi = M.hi; R->lo = M.lo; } +#else +uint128_t dap_uint128_substract(uint128_t a, uint128_t b); +uint128_t dap_uint128_add(uint128_t a, uint128_t b); +bool dap_uint128_check_equal(uint128_t a, uint128_t b); #endif -- GitLab