]> git.donarmstrong.com Git - samtools.git/commitdiff
fixed a compiling error (thank Ken for fixing it)
authorHeng Li <lh3@live.co.uk>
Wed, 22 Jul 2009 21:03:49 +0000 (21:03 +0000)
committerHeng Li <lh3@live.co.uk>
Wed, 22 Jul 2009 21:03:49 +0000 (21:03 +0000)
kstring.h

index 99ab259462ea8c0fc3dc2c198705f9d3c3d8dac8..f4e5a99df5b03364166338e55799edbc41b1cae4 100644 (file)
--- a/kstring.h
+++ b/kstring.h
@@ -3,6 +3,7 @@
 
 #include <stdlib.h>
 #include <string.h>
+#include <stdint.h>
 
 #ifndef kroundup32
 #define kroundup32(x) (--(x), (x)|=(x)>>1, (x)|=(x)>>2, (x)|=(x)>>4, (x)|=(x)>>8, (x)|=(x)>>16, ++(x))