summaryrefslogtreecommitdiff
path: root/macro.h
diff options
context:
space:
mode:
Diffstat (limited to 'macro.h')
-rw-r--r--macro.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/macro.h b/macro.h
index 267da83a0..ed09750f7 100644
--- a/macro.h
+++ b/macro.h
@@ -73,4 +73,7 @@ static inline size_t ALIGN(size_t l) {
#define TO_INT32(p) ((int32_t) ((intptr_t) (p)))
#define INT32_TO_PTR(u) ((void*) ((intptr_t) (u)))
+#define memzero(x,l) (memset((x), 0, (l)))
+#define zero(x) (memzero(&(x), sizeof(x)))
+
#endif