]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Fixes headers for uintptr_t (and build on NetBSD).
authorOndrej Zajicek <santiago@crfreenet.org>
Thu, 17 Sep 2009 15:52:36 +0000 (17:52 +0200)
committerOndrej Zajicek <santiago@crfreenet.org>
Thu, 17 Sep 2009 15:52:36 +0000 (17:52 +0200)
lib/mempool.c
lib/resource.c
lib/slab.c
nest/attrs.h
proto/bgp/bgp.h

index 03a6e6ba08ae23efe7ccdfebb96732be60eae3ee..0cb06b586605b755e0be7b828c7eac7ab01da647 100644 (file)
@@ -19,6 +19,7 @@
  */
 
 #include <stdlib.h>
+#include <stdint.h>
 
 #include "nest/bird.h"
 #include "lib/resource.h"
index a4d8751795a6a93d391c399752504dddfc4e4d33..5ba23f18521d241f5e7ba6e3be0521ae96231f40 100644 (file)
@@ -8,6 +8,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <stdint.h>
 
 #include "nest/bird.h"
 #include "lib/resource.h"
index 17511d218a9ae78b4ec747f9e0b0dca441148458..8cce52fe7a122cf17389dc761f0ab5445f908560 100644 (file)
@@ -26,6 +26,7 @@
  */
 
 #include <stdlib.h>
+#include <stdint.h>
 
 #include "nest/bird.h"
 #include "lib/resource.h"
index eee6b37871ac86ffb69522fc4cebd265543eacd5..16fb35af273b40c943bf1c1213cf62bed6ab7a99 100644 (file)
@@ -9,6 +9,8 @@
 #ifndef _BIRD_ATTRS_H_
 #define _BIRD_ATTRS_H_
 
+#include <stdint.h>
+
 /* a-path.c */
 
 #define AS_PATH_SET            1       /* Types of path segments */
index 9bbdab8efa3b9f3f22f35014b9d219aadf685124..092c3b34f0eb4fdf3789045bf241cbead42323ce 100644 (file)
@@ -9,6 +9,7 @@
 #ifndef _BIRD_BGP_H_
 #define _BIRD_BGP_H_
 
+#include <stdint.h>
 #include "nest/route.h"
 
 struct linpool;