aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChanghyeok Bae <changhyeok.bae@gmail.com>2022-08-09 04:01:05 +0000
committerStephen Hemminger <stephen@networkplumber.org>2022-08-09 13:26:35 -0700
commitcf6b60c504d4be5e1df2b2745e55d677967831d0 (patch)
treeed2af7fa3fba420533d6e7369746f84f8aab57d1
parentd937cb2b0c3ab863c991bf831821b15d12764675 (diff)
downloadiproute2-cf6b60c504d4be5e1df2b2745e55d677967831d0.tar.gz
ipstats: Add param.h for musl
Fix build error for musl | /usr/src/debug/iproute2/5.19.0-r0/iproute2-5.19.0/ip/ipstats.c:231: undefined reference to `MIN' Signed-off-by: Changhyeok Bae <changhyeok.bae@gmail.com>
-rw-r--r--ip/ipstats.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ip/ipstats.c b/ip/ipstats.c
index 5cdd15ae0..1ac275bd2 100644
--- a/ip/ipstats.c
+++ b/ip/ipstats.c
@@ -1,6 +1,7 @@
// SPDX-License-Identifier: GPL-2.0+
#include <assert.h>
#include <errno.h>
+#include <sys/param.h>
#include "list.h"
#include "utils.h"