From: Jérémie Galarneau Date: Tue, 18 Sep 2018 01:18:33 +0000 (-0400) Subject: Fix: missing header breaks the cygwin build X-Git-Tag: v2.11.0-rc2~208 X-Git-Url: https://git.liburcu.org/?a=commitdiff_plain;h=815e640448dd4fc76e34f26840cf9fa1e8f9adc6;p=lttng-tools.git Fix: missing header breaks the cygwin build stddef.h must be included to use ssize_t. Signed-off-by: Jérémie Galarneau --- diff --git a/include/lttng/location-internal.h b/include/lttng/location-internal.h index 568040da8..9072ef34c 100644 --- a/include/lttng/location-internal.h +++ b/include/lttng/location-internal.h @@ -22,6 +22,7 @@ #include #include #include +#include struct lttng_trace_archive_location { enum lttng_trace_archive_location_type type;