Commit 4a36b4c2 authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Stephen Hemminger

iproute2: fix building with musl

We need limits.h for PATH_MAX, fixes:

rt_names.c:364:13: error: ‘PATH_MAX’ undeclared (first use in this
function)
Signed-off-by: default avatarGustavo Zacarias <gustavo@zacarias.com.ar>
parent eb855269
......@@ -18,6 +18,7 @@
#include <sys/time.h>
#include <sys/socket.h>
#include <dirent.h>
#include <limits.h>
#include <asm/types.h>
#include <linux/rtnetlink.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment