diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2015-09-15 01:53:09 -0700 |
---|---|---|
committer | Martin Winter <mwinter@opensourcerouting.org> | 2015-10-16 23:50:45 -0700 |
commit | 821df2cf18e5978cc7ab532a8695444380d08270 (patch) | |
tree | f306ad0e31d572c44193b5d709b4b3915ea89d90 /isisd/topology/sprand.c | |
parent | ca8ec20b017393dbe91ff9e5ae2b7ff12872f869 (diff) | |
download | quagga-821df2cf18e5978cc7ab532a8695444380d08270.tar.bz2 quagga-821df2cf18e5978cc7ab532a8695444380d08270.tar.xz |
*: make sure zebra.h is always included first
zebra.h pulls in config.h, which results in fiddling with things like
__FILE_OFFSET_BITS. It must always be included first, in order to set
flags that influence the compiler via <features.h>.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'isisd/topology/sprand.c')
-rw-r--r-- | isisd/topology/sprand.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/isisd/topology/sprand.c b/isisd/topology/sprand.c index 28b58b30..1c1eb191 100644 --- a/isisd/topology/sprand.c +++ b/isisd/topology/sprand.c @@ -1,3 +1,5 @@ +#include <zebra.h> + #include <stdio.h> #include <stdlib.h> #include <string.h> |