Source-Changes-HG archive

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

[src/trunk]: src/sys/sys use __nothing instead since __empty is taken in stl_...



details:   https://anonhg.NetBSD.org/src/rev/21000a01427d
branches:  trunk
changeset: 821520:21000a01427d
user:      christos <christos%NetBSD.org@localhost>
date:      Wed Feb 08 17:59:35 2017 +0000

description:
use __nothing instead since __empty is taken in stl_deque.h

diffstat:

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

diffs (25 lines):

diff -r e14c8dce234b -r 21000a01427d sys/sys/cdefs.h
--- a/sys/sys/cdefs.h   Wed Feb 08 17:58:41 2017 +0000
+++ b/sys/sys/cdefs.h   Wed Feb 08 17:59:35 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cdefs.h,v 1.131 2017/02/08 16:26:19 christos Exp $     */
+/*     $NetBSD: cdefs.h,v 1.132 2017/02/08 17:59:35 christos Exp $     */
 
 /* * Copyright (c) 1991, 1993
  *     The Regents of the University of California.  All rights reserved.
@@ -312,13 +312,13 @@
  * #ifdef DEBUG
  * # define dprintf(a) printf(a)
  * #else
- * # define dprintf(a) __empty
+ * # define dprintf(a) __nothing
  * #endif
  *
  * We use ((void)0) instead of do {} while (0) so that it
  * works on , expressions.
  */
-#define __empty        ((void)0)
+#define __nothing      ((void)0)
 
 #if defined(__cplusplus)
 #define        __BEGIN_EXTERN_C        extern "C" {



Home | Main Index | Thread Index | Old Index