We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4a782d commit 3c181c4Copy full SHA for 3c181c4
CHANGELOG.md
@@ -7,6 +7,12 @@ and this project adheres to [0-based versioning](https://0ver.org/).
7
8
## [Unreleased]
9
10
+## v0.13.2 - 12-August-2025
11
+
12
+### Fixed
13
14
+- ifdef protection in `libs/common/assert.c`.
15
16
## v0.13.1 - 12-August-2025
17
18
### Changed
libs/common/assert.c
@@ -31,7 +31,7 @@
31
#include "common/macros.h"
32
#include "common/compiler.h"
33
34
-#ifdef AM_ASSERT_FAILURE
+#ifdef AM_ASSERT_FAILURE_ENABLED
35
36
AM_NORETURN void am_assert_failure(
37
const char *assertion, const char *file, int line
@@ -42,4 +42,4 @@ AM_NORETURN void am_assert_failure(
42
__builtin_trap();
43
}
44
45
-#endif /* AM_ASSERT_FAILURE */
+#endif /* AM_ASSERT_FAILURE_ENABLED */
0 commit comments