From f8be11834749a7ba0b5f499b11c048d62d98a068 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Fri, 6 Sep 2019 13:09:54 -0400 Subject: [PATCH] Fix: missing include strings.h for bcopy on Solaris 10/11 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit bcopy() is defined in strings.h on Solaris 10 and 11. Signed-off-by: Jérémie Galarneau --- src/bin/lttng-relayd/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/lttng-relayd/main.c b/src/bin/lttng-relayd/main.c index 453bf6d20..431a0d67a 100644 --- a/src/bin/lttng-relayd/main.c +++ b/src/bin/lttng-relayd/main.c @@ -40,6 +40,7 @@ #include #include #include +#include #include #include -- 2.34.1