diff options
author | Stefan Weil <weil@mail.berlios.de> | 2011-06-24 12:15:49 +0200 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2011-06-24 11:25:16 +0100 |
commit | 6a33e7b6097138a07fb16a56e5ab667f05473eca (patch) | |
tree | 3a8c8f45da3a11e32577dfd74fff8272585f7ea7 /qemu-common.h | |
parent | 0ff0fc19cde2e122c86a7af697df65cf8a5e222e (diff) |
w32: Remove redundant definitions of PRI*64
The PRI*64 macros are defined in MinGW's inttypes.h since 2002,
so they are not needed in qemu-common.h (which includes inttypes.h).
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'qemu-common.h')
-rw-r--r-- | qemu-common.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/qemu-common.h b/qemu-common.h index 109498dd4d..abd7a75b72 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -112,11 +112,6 @@ static inline char *realpath(const char *path, char *resolved_path) _fullpath(resolved_path, path, _MAX_PATH); return resolved_path; } - -#define PRId64 "I64d" -#define PRIx64 "I64x" -#define PRIu64 "I64u" -#define PRIo64 "I64o" #endif /* FIXME: Remove NEED_CPU_H. */ |