diff options
author | Alexander Larsson <alexl@redhat.com> | 2010-02-04 18:46:22 +0100 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2010-02-04 18:49:05 +0100 |
commit | 39be5a8b13ae793aacf641ef605a4cef8eabf373 (patch) | |
tree | 0a97d69e844486bcb29ef958033c8e4f66c06207 /common/lookup3.h | |
parent | 90104b39aec42210bf823a1a5f23e1822f32c038 (diff) | |
download | spice-39be5a8b13ae793aacf641ef605a4cef8eabf373.tar.gz spice-39be5a8b13ae793aacf641ef605a4cef8eabf373.tar.xz spice-39be5a8b13ae793aacf641ef605a4cef8eabf373.zip |
Use standard int types and <spice/types.h>
Diffstat (limited to 'common/lookup3.h')
-rw-r--r-- | common/lookup3.h | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/common/lookup3.h b/common/lookup3.h index a2fbdeab..00bc4eba 100644 --- a/common/lookup3.h +++ b/common/lookup3.h @@ -18,25 +18,7 @@ #ifndef __LOOKUP3_H #define __LOOKUP3_H -#ifdef __GNUC__ - -#include <stdint.h> - -#else - -#ifdef QXLDD -#include <windef.h> -#include "os_dep.h" -#else -#include <stddef.h> -#include <basetsd.h> -#endif - -typedef UINT32 uint32_t; -typedef UINT16 uint16_t; -typedef UINT8 uint8_t; - -#endif +#include <spice/types.h> uint32_t hashlittle(const void *key, size_t length, uint32_t initval); |