diff options
author | Martin Mares <mj@ucw.cz> | 1998-04-28 16:39:34 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1998-04-28 16:39:34 +0200 |
commit | 1feea03e7463d8eaeb00d5df6c2cd3e8e20f2bcd (patch) | |
tree | 70ba86e2c60b759f7740c0d28e6abdaaf60241ea /nest | |
parent | c40e05a0dffa33a8724e56121a2b6dcdfa9183e0 (diff) | |
download | bird-1feea03e7463d8eaeb00d5df6c2cd3e8e20f2bcd.tar bird-1feea03e7463d8eaeb00d5df6c2cd3e8e20f2bcd.zip |
Changed #include <x/y> to #include "x/y" for our local includes, so that
gcc -MM can be used to separate them from the system ones.
Added automatic generation of dependencies.
Diffstat (limited to 'nest')
-rw-r--r-- | nest/bird.h | 6 | ||||
-rw-r--r-- | nest/iface.h | 2 | ||||
-rw-r--r-- | nest/main.c | 7 | ||||
-rw-r--r-- | nest/protocol.h | 2 | ||||
-rw-r--r-- | nest/route.h | 2 |
5 files changed, 9 insertions, 10 deletions
diff --git a/nest/bird.h b/nest/bird.h index 062e5fd..b9c9192 100644 --- a/nest/bird.h +++ b/nest/bird.h @@ -9,9 +9,9 @@ #ifndef _BIRD_BIRD_H_ #define _BIRD_BIRD_H_ -#include <sysdep/config.h> -#include <lib/birdlib.h> -#include <lib/ip.h> +#include "sysdep/config.h" +#include "lib/birdlib.h" +#include "lib/ip.h" extern u32 router_id; /* Our Router ID */ extern u16 this_as; /* Our Autonomous System Number */ diff --git a/nest/iface.h b/nest/iface.h index 7b85ece..aa8a135 100644 --- a/nest/iface.h +++ b/nest/iface.h @@ -9,7 +9,7 @@ #ifndef _BIRD_IFACE_H_ #define _BIRD_IFACE_H_ -#include <lib/lists.h> +#include "lib/lists.h" struct iface { node n; diff --git a/nest/main.c b/nest/main.c index 8f60f27..8c26938 100644 --- a/nest/main.c +++ b/nest/main.c @@ -6,10 +6,9 @@ * Can be freely distributed and used under the terms of the GNU GPL. */ -#include <nest/bird.h> -#include <lib/lists.h> - -#include <nest/resource.h> +#include "nest/bird.h" +#include "lib/lists.h" +#include "lib/resource.h" int main(void) diff --git a/nest/protocol.h b/nest/protocol.h index adca114..848feca 100644 --- a/nest/protocol.h +++ b/nest/protocol.h @@ -9,7 +9,7 @@ #ifndef _BIRD_PROTOCOL_H_ #define _BIRD_PROTOCOL_H_ -#include <lib/resource.h> +#include "lib/resource.h" /* * Routing Protocol diff --git a/nest/route.h b/nest/route.h index 9e9ef7a..b3f0063 100644 --- a/nest/route.h +++ b/nest/route.h @@ -9,7 +9,7 @@ #ifndef _BIRD_ROUTE_H_ #define _BIRD_ROUTE_H_ -#include <lib/resource.h> +#include "lib/resource.h" /* * Generic data structure for storing network prefixes. Also used |