From: Thomas Monjalon Date: Thu, 25 Feb 2021 08:43:35 +0000 (+0100) Subject: examples/bbdev: fix header include for musl X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=960f28b2a3b39c143191bd3a5424245fc7dc4cf8;p=dpdk.git examples/bbdev: fix header include for musl The header file unistd.h should not be included from sys/ directory, it is an error with musl libc. Fixes: 1ffee690eaa1 ("examples/bbdev: add sample app") Cc: stable@dpdk.org Signed-off-by: Thomas Monjalon Acked-by: Andrew Rybchenko Acked-by: David Marchand --- diff --git a/examples/bbdev_app/main.c b/examples/bbdev_app/main.c index 2e170caf84..20cfd327fb 100644 --- a/examples/bbdev_app/main.c +++ b/examples/bbdev_app/main.c @@ -8,7 +8,7 @@ #include #include #include -#include +#include #include #include #include