From: Bruce Richardson Date: Mon, 25 Feb 2019 15:23:02 +0000 (+0000) Subject: test/compress: fix missing header include X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=1fd0fa258b3eacf94b3c30c8ceb42c317572cd05;p=dpdk.git 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 --- 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