From: Simon Marchi Date: Wed, 15 Jan 2020 20:42:31 +0000 (-0500) Subject: Fix: include stdlib.h in compat/string.h X-Git-Tag: v2.11.1~4 X-Git-Url: http://git.liburcu.org/?p=lttng-tools.git;a=commitdiff_plain;h=8ebff2d7f831d8cc91c969fee13ecd6fc31a07e6 Fix: include stdlib.h in compat/string.h Fixes: CC uuid.lo In file included from /home/smarchi/src/lttng-tools/src/common/uuid.c:19:0: /home/smarchi/src/lttng-tools/src/common/compat/string.h: In function ‘lttng_strndup’: /home/smarchi/src/lttng-tools/src/common/compat/string.h:78:8: error: implicit declaration of function ‘malloc’ [-Werror=implicit-function-declaration] ret = malloc(navail); ^~~~~~ /home/smarchi/src/lttng-tools/src/common/compat/string.h:78:8: error: incompatible implicit declaration of built-in function ‘malloc’ [-Werror] /home/smarchi/src/lttng-tools/src/common/compat/string.h:78:8: note: include ‘’ or provide a declaration of ‘malloc’ Note that this is in fallback code when the system doesn't provide strndup (or, in my case, the system provides it but configure failed to find it). Change-Id: I5817b0b2436573b7d8fecb2956577a7b183d6296 Signed-off-by: Jérémie Galarneau --- diff --git a/src/common/compat/string.h b/src/common/compat/string.h index a7bcab0a8..196d7d20d 100644 --- a/src/common/compat/string.h +++ b/src/common/compat/string.h @@ -25,6 +25,7 @@ #define _COMPAT_STRING_H #include +#include #ifdef HAVE_STRNLEN static inline