aboutsummaryrefslogtreecommitdiff
path: root/fw/base.c
diff options
context:
space:
mode:
Diffstat (limited to 'fw/base.c')
-rw-r--r--fw/base.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/fw/base.c b/fw/base.c
index 277c662..8e7c03b 100644
--- a/fw/base.c
+++ b/fw/base.c
@@ -1,5 +1,6 @@
#include <unistd.h>
+#include <stdbool.h>
int __errno = 0;
void *_impure_ptr = NULL;
@@ -19,3 +20,6 @@ size_t strlen(const char *s) {
while (*s++);
return s - start - 1;
}
+
+void __assert_func(bool value) {
+}