diff options
author | Martin Mares <mj@ucw.cz> | 2002-11-13 09:47:06 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2002-11-13 09:47:06 +0100 |
commit | 7d875e094bbbb9d4b234e31fe08f31510ac1d7d0 (patch) | |
tree | 6926a238826996127a7dd399d798b5182c3c7423 | |
parent | de10a974f2e2e8a11b6a6852cd770c1096e1c25d (diff) | |
download | bird-7d875e094bbbb9d4b234e31fe08f31510ac1d7d0.tar bird-7d875e094bbbb9d4b234e31fe08f31510ac1d7d0.zip |
Added missing includes.
-rw-r--r-- | nest/password.c | 1 | ||||
-rw-r--r-- | nest/rt-table.c | 2 | ||||
-rw-r--r-- | proto/bgp/bgp.c | 1 | ||||
-rw-r--r-- | sysdep/unix/krt.c | 1 |
4 files changed, 5 insertions, 0 deletions
diff --git a/nest/password.c b/nest/password.c index ba5d0e6..9a77e89 100644 --- a/nest/password.c +++ b/nest/password.c @@ -8,6 +8,7 @@ #include "nest/bird.h" #include "nest/password.h" +#include "lib/string.h" struct password_item *last_password_item = NULL; diff --git a/nest/rt-table.c b/nest/rt-table.c index d313dbc..82acea0 100644 --- a/nest/rt-table.c +++ b/nest/rt-table.c @@ -42,6 +42,8 @@ #include "filter/filter.h" #include "lib/string.h" +#include <alloca.h> + static slab *rte_slab; static linpool *rte_update_pool; diff --git a/proto/bgp/bgp.c b/proto/bgp/bgp.c index 72eba1a..f6cbed4 100644 --- a/proto/bgp/bgp.c +++ b/proto/bgp/bgp.c @@ -63,6 +63,7 @@ #include "conf/conf.h" #include "lib/socket.h" #include "lib/resource.h" +#include "lib/string.h" #include "bgp.h" diff --git a/sysdep/unix/krt.c b/sysdep/unix/krt.c index e841c0a..e648184 100644 --- a/sysdep/unix/krt.c +++ b/sysdep/unix/krt.c @@ -48,6 +48,7 @@ #include "nest/protocol.h" #include "lib/timer.h" #include "conf/conf.h" +#include "lib/string.h" #include "unix.h" #include "krt.h" |