diff options
author | Eric Molitor <emolitor@molitor.org> | 2020-05-26 16:58:32 +0100 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2020-05-26 21:38:42 -0500 |
commit | 52fa7bf4fca2afe8853225d674b8ac7e036b315f (patch) | |
tree | 46bec560c2c9545b2cf3a8f855be9415f72415ff /toys | |
parent | db0737648cccfcc8dc29479460c10f296fbb052a (diff) | |
download | toybox-52fa7bf4fca2afe8853225d674b8ac7e036b315f.tar.gz |
Remove unused include and constants
Diffstat (limited to 'toys')
-rw-r--r-- | toys/pending/route.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/toys/pending/route.c b/toys/pending/route.c index 0acca6c8..0d5e4449 100644 --- a/toys/pending/route.c +++ b/toys/pending/route.c @@ -48,20 +48,14 @@ config ROUTE #define FOR_route #include "toys.h" -#include <net/route.h> #include <linux/rtnetlink.h> GLOBALS( char *family; ) -#define DEFAULT_PREFIXLEN 128 -#define INVALID_ADDR 0xffffffffUL -#define IPV6_ADDR_LEN 40 //32 + 7 (':') + 1 ('\0') - struct _arglist { char *arg; - int action; }; |