summaryrefslogtreecommitdiffstats
path: root/lib/lists.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1998-04-28 16:39:34 +0200
committerMartin Mares <mj@ucw.cz>1998-04-28 16:39:34 +0200
commit1feea03e7463d8eaeb00d5df6c2cd3e8e20f2bcd (patch)
tree70ba86e2c60b759f7740c0d28e6abdaaf60241ea /lib/lists.c
parentc40e05a0dffa33a8724e56121a2b6dcdfa9183e0 (diff)
downloadbird-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 'lib/lists.c')
-rw-r--r--lib/lists.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lists.c b/lib/lists.c
index 321a5f0..55c2b0f 100644
--- a/lib/lists.c
+++ b/lib/lists.c
@@ -8,8 +8,8 @@
#define _BIRD_LISTS_C_
-#include <nest/bird.h>
-#include <lib/lists.h>
+#include "nest/bird.h"
+#include "lib/lists.h"
LIST_INLINE void
add_tail(list *l, node *n)