From 2a186e4b9b83b81362906b832f83e9d43e79d97d Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Mon, 17 Jul 2023 18:15:42 +0200 Subject: [PATCH] iso7816: Implement OSMO_ASSERT() using normal assert() --- iso7816/utils.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/iso7816/utils.h b/iso7816/utils.h index 74fcdd9..1d77a21 100644 --- a/iso7816/utils.h +++ b/iso7816/utils.h @@ -43,3 +43,5 @@ const char *get_value_string_or_null(const struct value_string *vs, int get_string_value(const struct value_string *vs, const char *str); + +#define OSMO_ASSERT(x) assert(x)