]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
tc: add missing limits.h header
authorBaruch Siach <baruch@tkos.co.il>
Thu, 22 Dec 2016 18:52:48 +0000 (20:52 +0200)
committerStephen Hemminger <stephen@networkplumber.org>
Thu, 29 Dec 2016 18:24:35 +0000 (10:24 -0800)
This fixes under musl build issues like:

f_matchall.c: In function ‘matchall_parse_opt’:
f_matchall.c:48:12: error: ‘LONG_MIN’ undeclared (first use in this function)
   if (h == LONG_MIN || h == LONG_MAX) {
            ^
f_matchall.c:48:12: note: each undeclared identifier is reported only once for each function it appears in
f_matchall.c:48:29: error: ‘LONG_MAX’ undeclared (first use in this function)
   if (h == LONG_MIN || h == LONG_MAX) {
                             ^

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
tc/tc_util.h

index f198a4ad5554102c6901d4d58731e05efb69426e..4db26c6d5e25b935457614dee4c5202641aaa505 100644 (file)
@@ -2,6 +2,7 @@
 #define _TC_UTIL_H_ 1
 
 #define MAX_MSG 16384
+#include <limits.h>
 #include <linux/pkt_sched.h>
 #include <linux/pkt_cls.h>
 #include <linux/gen_stats.h>