diff options
author | vnugent <public@vaughnnugent.com> | 2024-04-18 00:28:51 -0400 |
---|---|---|
committer | vnugent <public@vaughnnugent.com> | 2024-04-18 00:28:51 -0400 |
commit | d09c6c1bd5da3e2d79351daeba304ca99976a726 (patch) | |
tree | d7e0057bb8546fcbee06e0f758906b3bd3397fa5 /tests/hex.h | |
parent | 54e06ada7d624ed0d28c6a6db04a149708841bf8 (diff) |
refactor!: Pushing what I have to dev
Diffstat (limited to 'tests/hex.h')
-rw-r--r-- | tests/hex.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/tests/hex.h b/tests/hex.h index 7c8080a..3348028 100644 --- a/tests/hex.h +++ b/tests/hex.h @@ -15,7 +15,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License -* along with NativeHeapApi. If not, see http://www.gnu.org/licenses/. +* along with noscrypt. If not, see http://www.gnu.org/licenses/. */ @@ -26,13 +26,7 @@ #include <stdlib.h> #include <string.h> -#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L - #include <assert.h> - #define STATIC_ASSERT(x, m) static_assert(x, m) -#else - #define STATIC_ASSERT(x, m) - #pragma message("Static assertions are not supported by this language version") -#endif +#include "../src/internal/nc-util.h" typedef struct hexBytes { |