From 312876ad18b51b3c56318a55e52be8e69556dc43 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Fri, 14 Jun 2013 11:55:08 -0400 Subject: [PATCH] zmalloc: attribute always_inline Signed-off-by: Mathieu Desnoyers --- include/helper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/helper.h b/include/helper.h index 8aeb7728..b9448e33 100644 --- a/include/helper.h +++ b/include/helper.h @@ -21,7 +21,7 @@ #include -static inline +static inline __attribute__((always_inline)) void *zmalloc(size_t len) { return calloc(len, 1); -- 2.34.1