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.12.0-rc1~794 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=5d818838f82507b1294e793d59b6117ee7930fec 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;