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 /client/glz_decoder_config.h | |
parent | 90104b39aec42210bf823a1a5f23e1822f32c038 (diff) |
Use standard int types and <spice/types.h>
Diffstat (limited to 'client/glz_decoder_config.h')
-rw-r--r-- | client/glz_decoder_config.h | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/client/glz_decoder_config.h b/client/glz_decoder_config.h index 44ef165..3e820a5 100644 --- a/client/glz_decoder_config.h +++ b/client/glz_decoder_config.h @@ -25,23 +25,7 @@ #include <stdio.h> -#ifdef __GNUC__ - -#include <stdint.h> - - -#else - -#include <stddef.h> -#include <basetsd.h> - - -typedef UINT64 uint64_t; -typedef UINT32 uint32_t; -typedef UINT16 uint16_t; -typedef UINT8 uint8_t; - -#endif //__GNUC__ +#include <spice/types.h> #define MIN(x, y) (((x) <= (y)) ? (x) : (y)) #define MAX(x, y) (((x) >= (y)) ? (x) : (y)) |