aboutsummaryrefslogtreecommitdiffstats
path: root/src/vlib
diff options
context:
space:
mode:
authorGuillaume Solignac <gsoligna@cisco.com>2023-01-10 15:37:18 +0100
committerBeno�t Ganne <bganne@cisco.com>2023-01-12 13:18:36 +0000
commitaf5744c3595dee92ff9ceb1e08314123baea35e5 (patch)
treee249c74a6586fa8064fda2fd116200c9bf5fea41 /src/vlib
parent6903da232304bc47fc82178bb6956e3613a9921c (diff)
misc: use right include for fctnl.h and poll.h
Musl is stricter than glibc and has a warning that including fctnl.h and poll.h should be prefered rather than their sys/ counterparts, which breaks -Wall setups. Type: fix Signed-off-by: Guillaume Solignac <gsoligna@cisco.com> Change-Id: Id101e999371951b0927cc8c4109f8f1536de1bc2
Diffstat (limited to 'src/vlib')
-rw-r--r--src/vlib/physmem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vlib/physmem.c b/src/vlib/physmem.c
index 76f8494b331..0abfe7ece56 100644
--- a/src/vlib/physmem.c
+++ b/src/vlib/physmem.c
@@ -17,7 +17,7 @@
#include <sys/types.h>
#include <sys/mount.h>
#include <sys/mman.h>
-#include <sys/fcntl.h>
+#include <fcntl.h>
#include <sys/stat.h>
#include <unistd.h>