Module Name:    src
Committed By:   christos
Date:           Thu Nov 19 17:04:01 UTC 2015

Modified Files:
        src/sys/sys: cdefs.h

Log Message:
long line police


To generate a diff of this commit:
cvs rdiff -u -r1.127 -r1.128 src/sys/sys/cdefs.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/sys/cdefs.h
diff -u src/sys/sys/cdefs.h:1.127 src/sys/sys/cdefs.h:1.128
--- src/sys/sys/cdefs.h:1.127	Wed Oct 14 11:52:40 2015
+++ src/sys/sys/cdefs.h	Thu Nov 19 12:04:01 2015
@@ -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)	\

Reply via email to