svn commit: r237989 - stable/9/lib/libstand
David E. O'Brien
obrien at FreeBSD.org
Mon Jul 2 10:00:28 UTC 2012
Author: obrien
Date: Mon Jul 2 10:00:28 2012
New Revision: 237989
URL: http://svn.freebsd.org/changeset/base/237989
Log:
MFC: r235939: consitently use "__LP64__"
Modified:
stable/9/lib/libstand/bswap.c
Directory Properties:
stable/9/ (props changed)
stable/9/lib/ (props changed)
stable/9/lib/libstand/ (props changed)
Modified: stable/9/lib/libstand/bswap.c
==============================================================================
--- stable/9/lib/libstand/bswap.c Mon Jul 2 09:53:57 2012 (r237988)
+++ stable/9/lib/libstand/bswap.c Mon Jul 2 10:00:28 2012 (r237989)
@@ -31,7 +31,7 @@ bswap32(u_int32_t x)
u_int64_t
bswap64(u_int64_t x)
{
-#ifdef _LP64
+#ifdef __LP64__
/*
* Assume we have wide enough registers to do it without touching
* memory.
More information about the svn-src-stable-9
mailing list