Source-Changes-HG archive

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

[src/trunk]: src/sys/sys Fix location of comment for MIN/MAX.



details:   https://anonhg.NetBSD.org/src/rev/96ef85fe3bb5
branches:  trunk
changeset: 337397:96ef85fe3bb5
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Mon Apr 13 21:32:04 2015 +0000

description:
Fix location of comment for MIN/MAX.

diffstat:

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

diffs (24 lines):

diff -r 62163aee83cd -r 96ef85fe3bb5 sys/sys/param.h
--- a/sys/sys/param.h   Mon Apr 13 21:22:34 2015 +0000
+++ b/sys/sys/param.h   Mon Apr 13 21:32:04 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: param.h,v 1.469 2015/04/03 20:01:08 rtr Exp $  */
+/*     $NetBSD: param.h,v 1.470 2015/04/13 21:32:04 riastradh Exp $    */
 
 /*-
  * Copyright (c) 1982, 1986, 1989, 1993
@@ -130,13 +130,12 @@
 #endif /* (MAXUPRC - 0) < CHILD_MAX */
 #endif /* !defined(MAXUPRC) */
 
+/* Macros for min/max. */
 #define        MIN(a,b)        ((/*CONSTCOND*/(a)<(b))?(a):(b))
 #define        MAX(a,b)        ((/*CONSTCOND*/(a)>(b))?(a):(b))
 
 /* More types and definitions used throughout the kernel. */
 #ifdef _KERNEL
-/* Macros for min/max. */
-
 #include <sys/cdefs.h>
 #include <sys/errno.h>
 #include <sys/time.h>



Home | Main Index | Thread Index | Old Index