aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2012-05-24 21:44:46 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2012-05-24 21:44:46 +0000
commit8bed40c9fe84015ff4e2ddeb54aa3207e7fa5375 (patch)
tree049243f21675549307a1e344893a4d6c9b22d636 /lib
parent1aba515830ac713d779641bccdad662058a700b6 (diff)
downloadsrc-8bed40c9fe84015ff4e2ddeb54aa3207e7fa5375.tar.gz
src-8bed40c9fe84015ff4e2ddeb54aa3207e7fa5375.zip
Consitently use "__LP64__".
[there are 33 __LP64__'s in the kernel (minus cddl/ and contrib/), and 11 _LP64's]
Notes
Notes: svn path=/head/; revision=235939
Diffstat (limited to 'lib')
-rw-r--r--lib/libstand/bswap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libstand/bswap.c b/lib/libstand/bswap.c
index b8e6ffb5ba36..308edda63085 100644
--- a/lib/libstand/bswap.c
+++ b/lib/libstand/bswap.c
@@ -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.