[08/15] app/test: include fcntl.h due to use of O_RDONLY

Message ID 20190311173702.24471-9-ncopa@alpinelinux.org (mailing list archive)
State Superseded, archived
Delegated to: Thomas Monjalon
Headers
Series Build fixes for musl libc |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation fail Compilation issues

Commit Message

Natanael Copa March 11, 2019, 5:36 p.m. UTC
  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);
                                                       ^~~~~~~~

Signed-off-by: Natanael Copa <ncopa@alpinelinux.org>
---
 app/test/test_eal_flags.c | 1 +
 1 file changed, 1 insertion(+)
  

Patch

diff --git a/app/test/test_eal_flags.c b/app/test/test_eal_flags.c
index 81e345b87..775ccd3dd 100644
--- a/app/test/test_eal_flags.c
+++ b/app/test/test_eal_flags.c
@@ -17,6 +17,7 @@ 
 #include <sys/wait.h>
 #include <sys/file.h>
 #include <limits.h>
+#include <fcntl.h>
 
 #include <rte_per_lcore.h>
 #include <rte_debug.h>