diff options
author | Arnon Gilboa <agilboa@agilboa.usersys.redhat.com> | 2010-02-09 20:04:30 +0200 |
---|---|---|
committer | Alon Levy <alevy@redhat.com> | 2010-08-23 18:47:05 +0300 |
commit | c1b6d6a8a121d4536803abffbed2b265fb4c76fc (patch) | |
tree | 4137a6e81a827d11825f757532a148a90f2f07b0 /common | |
parent | f915fa4a72c17e39f750a9154d1a7b4f4eea634e (diff) |
spice: vdagent: support x64 arch
Diffstat (limited to 'common')
-rw-r--r-- | common/stdint.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/stdint.h b/common/stdint.h index 9316d56..250efb5 100644 --- a/common/stdint.h +++ b/common/stdint.h @@ -136,10 +136,14 @@ typedef unsigned long long uint_fast64_t; /* 7.18.1.4 Integer types capable of holding object pointers */ +#ifndef _WIN64
+ typedef int intptr_t; typedef unsigned uintptr_t; +#endif + /* 7.18.1.5 Greatest-width integer types */ |