aboutsummaryrefslogtreecommitdiff
path: root/src/arena.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arena.c')
-rw-r--r--src/arena.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arena.c b/src/arena.c
index 0a12c52..7ca5626 100644
--- a/src/arena.c
+++ b/src/arena.c
@@ -10,9 +10,9 @@
#include "common.h"
#include "errors.h"
-/* TODO: Support implementations without MAP_ANON? */
+/* TODO: Support malloc() backend for systems without MAP_ANON */
#ifndef MAP_ANON
-static_assert(NULL, "MAP_ANON not available on this system");
+# error "System not supported (missing MAP_ANON)"
#endif
#if DEBUG