From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:46609) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qa9hU-0004Xw-3R for qemu-devel@nongnu.org; Fri, 24 Jun 2011 12:57:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qa9hS-0001YT-Hc for qemu-devel@nongnu.org; Fri, 24 Jun 2011 12:57:47 -0400 Received: from mail-fx0-f45.google.com ([209.85.161.45]:58586) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qa9hS-0001W2-36 for qemu-devel@nongnu.org; Fri, 24 Jun 2011 12:57:46 -0400 Received: by mail-fx0-f45.google.com with SMTP id 12so94462fxg.4 for ; Fri, 24 Jun 2011 09:57:45 -0700 (PDT) From: Stefan Hajnoczi Date: Fri, 24 Jun 2011 17:56:47 +0100 Message-Id: <1308934609-20824-12-git-send-email-stefanha@linux.vnet.ibm.com> In-Reply-To: <1308934609-20824-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1308934609-20824-1-git-send-email-stefanha@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 11/13] w32: Remove redundant definitions of PRI*64 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Anthony Liguori , Stefan Hajnoczi From: Stefan Weil 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 Signed-off-by: Stefan Hajnoczi --- qemu-common.h | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/qemu-common.h b/qemu-common.h index 109498d..abd7a75 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. */ -- 1.7.5.4