diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-06-14 09:43:53 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-06-15 08:09:43 -0700 |
commit | 385c1343f7e0782b89e40fa17e378bc1f75ce62e (patch) | |
tree | c2d6cbf49bfbecee6c3b2304697a4c74497d0d37 | |
parent | 5aaec3c7a583354a07ec765327fd0edd6216981f (diff) |
Get rid of unneeded && clause in list of LP64 ifdefs in Xmd.h
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
-rw-r--r-- | Xmd.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -57,12 +57,11 @@ SOFTWARE. # include <sys/isa_defs.h> /* Solaris: defines _LP64 if necessary */ # endif -# if defined (_LP64) || \ +# if defined (_LP64) || defined(__LP64__) || \ defined(__alpha) || defined(__alpha__) || \ defined(__ia64__) || defined(ia64) || \ defined(__sparc64__) || \ defined(__s390x__) || \ - defined(__hppa__) && defined(__LP64__) || \ defined(__amd64__) || defined(amd64) || \ defined(__powerpc64__) # define LONG64 /* 32/64-bit architecture */ |