summaryrefslogtreecommitdiff
path: root/mi/micoord.h
diff options
context:
space:
mode:
Diffstat (limited to 'mi/micoord.h')
-rw-r--r--mi/micoord.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/mi/micoord.h b/mi/micoord.h
index f31c88c83..ffe2e1e53 100644
--- a/mi/micoord.h
+++ b/mi/micoord.h
@@ -1,4 +1,4 @@
-/* $XFree86: xc/programs/Xserver/mi/micoord.h,v 1.5 2002/05/22 21:38:31 herrb Exp $ */
+/* $XFree86: xc/programs/Xserver/mi/micoord.h,v 1.7 2003/10/29 22:57:48 tsi Exp $ */
/*
* Copyright (C) 2000 The XFree86 Project, Inc. All Rights Reserved.
*
@@ -44,13 +44,13 @@
* forcing as to use div instead of shift. Let's be explicit.
*/
-#if defined(mips) || \
+#if defined(mips) || defined(sgi) || \
defined(sparc) || defined(__sparc64__) || \
defined(__alpha) || defined(__alpha__) || \
defined(__i386__) || defined(i386) || \
defined(__ia64__) || defined(ia64) || \
defined(__s390x__) || defined(__s390__) || \
- defined(__x86_64__) || defined(x86_64)
+ defined(__AMD64__) || defined(AMD64)
#define GetHighWord(x) (((int) (x)) >> 16)
#else
#define GetHighWord(x) (((int) (x)) / 65536)