From 8b861686594afcdbaa66bef9be7cd866a31f86ad Mon Sep 17 00:00:00 2001 From: Koen Zandberg Date: Thu, 23 Jul 2020 14:43:55 +0200 Subject: [PATCH] tests/pkg_libcose: add missing unistd.h include Required for ssize_t --- tests/pkg_libcose/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/pkg_libcose/main.c b/tests/pkg_libcose/main.c index 6a6de802eb..1f64f1bb32 100644 --- a/tests/pkg_libcose/main.c +++ b/tests/pkg_libcose/main.c @@ -22,6 +22,7 @@ #include #include #include +#include #include "cose.h" #include "cose/sign.h"