diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2022-04-04 18:02:14 +0200 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2022-04-04 18:33:10 +0200 | 
| commit | 5b4f4e626f696f4ab8717beff56f36365d87d7b4 (patch) | |
| tree | 5645324558a5e8b638f09b84f436843fcceefdab /nhrpd/linux.c | |
| parent | 92d930ede593dba53d1cb66c6346c45e6d1ba051 (diff) | |
build: first header *must* be zebra.h or config.h
This has already been a requirement for Solaris, it is still a
requirement for some of the autoconf feature checks to work correctly,
and it will be a requirement for `-fms-extensions`.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'nhrpd/linux.c')
| -rw-r--r-- | nhrpd/linux.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/nhrpd/linux.c b/nhrpd/linux.c index 4986bfb99c..75e9f37a68 100644 --- a/nhrpd/linux.c +++ b/nhrpd/linux.c @@ -7,8 +7,9 @@   * (at your option) any later version.   */ -#include <errno.h>  #include "zebra.h" + +#include <errno.h>  #include <linux/if_packet.h>  #include "nhrp_protocol.h"  | 
