From: Natanael Copa Date: Wed, 13 Mar 2019 17:06:50 +0000 (+0100) Subject: app/test: fix build with musl libc X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=816d76c53e246b97ee6dfc8343efa5959ea7270d;p=dpdk.git app/test: fix build with musl libc Fix following build error with musl libc: app/test/test_eal_flags.c:152:55: error: 'O_RDONLY' undeclared (first use in this function) fd = openat(dirfd(hugepage_dir), dirent->d_name, O_RDONLY); ^~~~~~~~ Fixes: 45f1b6e8680a ("app: add new tests on eal flags") Cc: stable@dpdk.org Signed-off-by: Natanael Copa --- diff --git a/app/test/test_eal_flags.c b/app/test/test_eal_flags.c index 1a64b09007..d626dd7128 100644 --- a/app/test/test_eal_flags.c +++ b/app/test/test_eal_flags.c @@ -17,6 +17,7 @@ #include #include #include +#include #include #include