iso7816: Implement OSMO_ASSERT() using normal assert()

This commit is contained in:
Harald Welte 2023-07-17 18:15:42 +02:00
parent 28572c8c56
commit 2a186e4b9b
1 changed files with 2 additions and 0 deletions

View File

@ -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)