Source-Changes-HG archive

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

[src/trunk]: src/sys/sys Don't try to include "null.h" while compiling bootbl...



details:   https://anonhg.NetBSD.org/src/rev/06e7989b6c0c
branches:  trunk
changeset: 479852:06e7989b6c0c
user:      tron <tron%NetBSD.org@localhost>
date:      Thu Dec 23 14:07:36 1999 +0000

description:
Don't try to include "null.h" while compiling bootblocks.

diffstat:

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

diffs (18 lines):

diff -r d60d814fff95 -r 06e7989b6c0c sys/sys/param.h
--- a/sys/sys/param.h   Thu Dec 23 12:28:06 1999 +0000
+++ b/sys/sys/param.h   Thu Dec 23 14:07:36 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: param.h,v 1.80 1999/12/23 09:10:18 kleink Exp $        */
+/*     $NetBSD: param.h,v 1.81 1999/12/23 14:07:36 tron Exp $  */
 
 /*-
  * Copyright (c) 1982, 1986, 1989, 1993
@@ -81,7 +81,7 @@
 
 #define NetBSD 199905          /* NetBSD version (year & month). */
 
-#ifdef _KERNEL
+#if !defined(_KERNEL) && !defined(_STANDALONE)
 #ifndef NULL
 #define        NULL    0
 #endif /* NULL */



Home | Main Index | Thread Index | Old Index