Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/sys long line police



details:   https://anonhg.NetBSD.org/src/rev/8028bda1a30a
branches:  trunk
changeset: 341714:8028bda1a30a
user:      christos <christos%NetBSD.org@localhost>
date:      Thu Nov 19 17:04:01 2015 +0000

description:
long line police

diffstat:

 sys/sys/cdefs.h |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (19 lines):

diff -r 86f9a7ec3be6 -r 8028bda1a30a sys/sys/cdefs.h
--- a/sys/sys/cdefs.h   Thu Nov 19 17:01:40 2015 +0000
+++ b/sys/sys/cdefs.h   Thu Nov 19 17:04:01 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cdefs.h,v 1.127 2015/10/14 15:52:40 christos Exp $     */
+/*     $NetBSD: cdefs.h,v 1.128 2015/11/19 17:04:01 christos Exp $     */
 
 /* * Copyright (c) 1991, 1993
  *     The Regents of the University of California.  All rights reserved.
@@ -560,7 +560,8 @@
 #ifndef __ASSEMBLER__
 /* __BIT(n): nth bit, where __BIT(0) == 0x1. */
 #define        __BIT(__n)      \
-    (((uintmax_t)(__n) >= NBBY * sizeof(uintmax_t)) ? 0 : ((uintmax_t)1 << (uintmax_t)((__n) & (NBBY * sizeof(uintmax_t) - 1))))
+    (((uintmax_t)(__n) >= NBBY * sizeof(uintmax_t)) ? 0 : \
+    ((uintmax_t)1 << (uintmax_t)((__n) & (NBBY * sizeof(uintmax_t) - 1))))
 
 /* __BITS(m, n): bits m through n, m < n. */
 #define        __BITS(__m, __n)        \



Home | Main Index | Thread Index | Old Index