From 50d4de892f40296aafb4a735faa49345c9db75fe Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Fri, 28 May 2021 11:36:34 -0400 Subject: [PATCH] Build fix: cygwin: unknown type ssize_t MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The build fails on cygwin with the following error: In file included from actions/path.c:8: ../../include/lttng/action/path-internal.h:31:1: error: unknown type name "ssize_t"; did you mean "_ssize_t"? Signed-off-by: Jérémie Galarneau Change-Id: I93aac8ef33cfe19b655d80709c9b95a503815bda --- include/lttng/action/path-internal.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/lttng/action/path-internal.h b/include/lttng/action/path-internal.h index 23f87ef9b..608f144c2 100644 --- a/include/lttng/action/path-internal.h +++ b/include/lttng/action/path-internal.h @@ -13,6 +13,7 @@ #include #include #include +#include #ifdef __cplusplus extern "C" { -- 2.34.1