aboutsummaryrefslogtreecommitdiff
path: root/libc/inc
diff options
context:
space:
mode:
authorMarvin Borner2021-02-26 18:40:37 +0100
committerMarvin Borner2021-02-26 18:40:37 +0100
commit5cd84ad93f7d67cdaa134707fcce1b1ef85183ad (patch)
tree777ccbcf3034f96a013c402cf05ad23c35b4de0e /libc/inc
parent0f00932955521c3c2fb8140176ab72f22172c298 (diff)
Full UBSan support - many fixes!
Diffstat (limited to 'libc/inc')
-rw-r--r--libc/inc/def.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/inc/def.h b/libc/inc/def.h
index 8ff6d81..c8b9dbf 100644
--- a/libc/inc/def.h
+++ b/libc/inc/def.h
@@ -25,6 +25,8 @@ typedef unsigned long long u64;
#define UNUSED(a) ((void)(a))
+#define NO_SANITIZE __attribute__((no_sanitize("undefined")))
+
#define EOF (-1)
#define NULL ((void *)0)