From 1fd0fa258b3eacf94b3c30c8ceb42c317572cd05 Mon Sep 17 00:00:00 2001 From: Bruce Richardson Date: Mon, 25 Feb 2019 15:23:02 +0000 Subject: [PATCH] test/compress: fix missing header include usleep() is defined in unistd.h, which is missing from include list in test_compressdev.c, causing compiler errors on FreeBSD. Fixes: b06aa643cac4 ("test/compress: add initial unit tests") Cc: stable@dpdk.org Signed-off-by: Bruce Richardson --- 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 e8476edd29..13cf26c9a6 100644 --- a/app/test/test_compressdev.c +++ b/app/test/test_compressdev.c @@ -4,6 +4,7 @@ #include #include #include +#include #include #include -- 2.20.1