Cleanup: implement zmalloc as static inline
[lttng-tools.git] / src / common / macros.h
index fc159c0af3c707102d7bb853a49360d16e01c1d1..308d3d57a14d5ff9ad7911383af9f40f0477c4da 100644 (file)
 /*
  * Memory allocation zeroed
  */
-#define zmalloc(x) calloc(1, x)
+static inline
+void *zmalloc(size_t len)
+{
+       return calloc(1, len);
+}
 
 #ifndef ARRAY_SIZE
 #define ARRAY_SIZE(array)   (sizeof(array) / (sizeof((array)[0])))
This page took 0.024143 seconds and 5 git commands to generate.