diff options
author | Donald Sharp <sharpd@nvidia.com> | 2024-01-04 20:26:33 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2024-01-04 20:26:33 +0100 |
commit | 75b3e82dfa88d85782d0b08fe80e2e4e15abfb6b (patch) | |
tree | 2cd21a3b212dd180c57220634d1a7ef053d292fb /zebra | |
parent | lib: Remove inclusion of various MAXINT from zebra.h (diff) | |
download | frr-75b3e82dfa88d85782d0b08fe80e2e4e15abfb6b.tar.xz frr-75b3e82dfa88d85782d0b08fe80e2e4e15abfb6b.zip |
*: Remove cost of including netinet/icmp.h everywhere
This file inclusion is only used in 3 places move
the includes to those spots.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra')
-rw-r--r-- | zebra/rtadv.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/zebra/rtadv.c b/zebra/rtadv.c index df444ee52..00f018d19 100644 --- a/zebra/rtadv.c +++ b/zebra/rtadv.c @@ -6,6 +6,7 @@ */ #include <zebra.h> +#include <netinet/icmp6.h> #include "memory.h" #include "sockopt.h" |