diff options
| author | Richard Nyberg <rnyberg@murmeldjur.se> | 2006-10-15 15:08:17 +0000 |
|---|---|---|
| committer | Richard Nyberg <rnyberg@murmeldjur.se> | 2006-10-15 15:08:17 +0000 |
| commit | ff3f222885ec1bbaab6801f7c545175fc3c19c33 (patch) | |
| tree | 888b417a441ca5a903afe91c08d11e148ed03410 | |
| parent | f20c481b11b6dc1d1f13027f6b13be0e42ce08ad (diff) | |
| download | btpd-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...
| -rw-r--r-- | misc/hashtable.c | 2 |
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" |