From: Guillaume Solignac Date: Thu, 20 Apr 2023 16:02:59 +0000 (+0200) Subject: pci: fix missing limits.h X-Git-Tag: v24.10-rc0~56 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=52bd5376e42d48139561b6acbeb0683afccc9173;p=vpp.git pci: fix missing limits.h When building with musl, PATH_MAX is not available if we don't add its header to pci.c. Type: fix Signed-off-by: Guillaume Solignac Change-Id: I3d4e7cf5754d7c1d480834d7cd038d5bda46fd2f Signed-off-by: Pierre Pfister --- diff --git a/src/vlib/linux/pci.c b/src/vlib/linux/pci.c index 08923bebcdf..f7c63bc3607 100644 --- a/src/vlib/linux/pci.c +++ b/src/vlib/linux/pci.c @@ -55,6 +55,7 @@ #include #include #include +#include #include #define SYSFS_DEVICES_PCI "/sys/devices/pci"