From 415dfaf718b209207bf492a5f9afa571f76d789c 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