From 890028e252a4c327e16bf8336432c9a17693330a Mon Sep 17 00:00:00 2001 From: Bruce Richardson Date: Fri, 19 Apr 2019 13:03:27 +0100 Subject: [PATCH] test/compress: fix missing include Build of test_compressdev.c fails on FreeBSD due to the missing include of unistd.h, to provide the function usleep. Fixes: b06aa643cac4 ("test/compress: add initial unit tests") Cc: stable@dpdk.org Signed-off-by: Bruce Richardson Reviewed-by: David Marchand --- app/test/test_compressdev.c | 1 + 1 file changed, 1 insertion(+) diff --git a/app/test/test_compressdev.c b/app/test/test_compressdev.c index 8d6dbf00d5..1b1983e219 100644 --- a/app/test/test_compressdev.c +++ b/app/test/test_compressdev.c @@ -5,6 +5,7 @@ #include #include #include +#include #include #include -- 2.20.1