From 5d818838f82507b1294e793d59b6117ee7930fec Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Mon, 17 Sep 2018 21:18:33 -0400 Subject: [PATCH] Fix: missing header breaks the cygwin build MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit stddef.h must be included to use ssize_t. Signed-off-by: Jérémie Galarneau --- include/lttng/location-internal.h | 1 + 1 file changed, 1 insertion(+) 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; -- 2.34.1