Module Name: src Committed By: riastradh Date: Mon Apr 13 21:32:04 UTC 2015
Modified Files: src/sys/sys: param.h Log Message: Fix location of comment for MIN/MAX. To generate a diff of this commit: cvs rdiff -u -r1.469 -r1.470 src/sys/sys/param.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/param.h diff -u src/sys/sys/param.h:1.469 src/sys/sys/param.h:1.470 --- src/sys/sys/param.h:1.469 Fri Apr 3 20:01:08 2015 +++ src/sys/sys/param.h Mon Apr 13 21:32:04 2015 @@ -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>