about summary refs log tree commit diff
path: root/misc/hashtable.c
diff options
context:
space:
mode:
authorRichard Nyberg <rnyberg@murmeldjur.se>2006-10-15 15:08:17 +0000
committerRichard Nyberg <rnyberg@murmeldjur.se>2006-10-15 15:08:17 +0000
commitff3f222885ec1bbaab6801f7c545175fc3c19c33 (patch)
tree888b417a441ca5a903afe91c08d11e148ed03410 /misc/hashtable.c
parentf20c481b11b6dc1d1f13027f6b13be0e42ce08ad (diff)
downloadbtpd-ff3f222885ec1bbaab6801f7c545175fc3c19c33.tar.gz
btpd-ff3f222885ec1bbaab6801f7c545175fc3c19c33.zip
OpenBSD doesn't have stdint.h. It'd be great if they would implement basic c99
library support some day...

Diffstat (limited to 'misc/hashtable.c')
-rw-r--r--misc/hashtable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/hashtable.c b/misc/hashtable.c
index 37661f4..b124749 100644
--- a/misc/hashtable.c
+++ b/misc/hashtable.c
@@ -1,5 +1,5 @@
 #include <stdlib.h>
-#include <stdint.h>
+#include <inttypes.h>
 
 #include "hashtable.h"