summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2009-09-17 17:52:36 +0200
committerOndrej Zajicek <santiago@crfreenet.org>2009-09-17 17:52:36 +0200
commit46eb80d5d50a2b284cae19444149d57d857a8e02 (patch)
tree13993dda06d7d32857560218c99a48b90137d4df /lib
parentf4c6ca8c9c7ca7c0d481e6059396beed6adc768d (diff)
downloadbird-46eb80d5d50a2b284cae19444149d57d857a8e02.tar
bird-46eb80d5d50a2b284cae19444149d57d857a8e02.zip
Fixes headers for uintptr_t (and build on NetBSD).
Diffstat (limited to 'lib')
-rw-r--r--lib/mempool.c1
-rw-r--r--lib/resource.c1
-rw-r--r--lib/slab.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/lib/mempool.c b/lib/mempool.c
index 03a6e6b..0cb06b5 100644
--- a/lib/mempool.c
+++ b/lib/mempool.c
@@ -19,6 +19,7 @@
*/
#include <stdlib.h>
+#include <stdint.h>
#include "nest/bird.h"
#include "lib/resource.h"
diff --git a/lib/resource.c b/lib/resource.c
index a4d8751..5ba23f1 100644
--- a/lib/resource.c
+++ b/lib/resource.c
@@ -8,6 +8,7 @@
#include <stdio.h>
#include <stdlib.h>
+#include <stdint.h>
#include "nest/bird.h"
#include "lib/resource.h"
diff --git a/lib/slab.c b/lib/slab.c
index 17511d2..8cce52f 100644
--- a/lib/slab.c
+++ b/lib/slab.c
@@ -26,6 +26,7 @@
*/
#include <stdlib.h>
+#include <stdint.h>
#include "nest/bird.h"
#include "lib/resource.h"