diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-05-14 09:39:32 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-05-14 09:39:32 +0100 |
commit | e76f13c5d29bf4cac7a244eab77a354638f8823b (patch) | |
tree | b86a1c45fbce3384d59838f15874809dfd441913 /util-src | |
parent | bdbef6db88bb34e2041d60e57fa2fcec52e54401 (diff) | |
parent | a9407043cf075c684494be34a5622ad06666a043 (diff) | |
download | prosody-e76f13c5d29bf4cac7a244eab77a354638f8823b.tar.gz prosody-e76f13c5d29bf4cac7a244eab77a354638f8823b.zip |
Merge 0.9->trunk
Diffstat (limited to 'util-src')
-rw-r--r-- | util-src/hashes.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/util-src/hashes.c b/util-src/hashes.c index 8f7d7140..39737ae0 100644 --- a/util-src/hashes.c +++ b/util-src/hashes.c @@ -15,7 +15,12 @@ #include <string.h> #include <stdlib.h> + +#ifdef _MSC_VER +typedef unsigned __int32 uint32_t; +#else #include <inttypes.h> +#endif #include "lua.h" #include "lauxlib.h" |