Source-Changes-HG archive

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

[src/trunk]: src/sys/sys Remove two cases of:



details:   https://anonhg.NetBSD.org/src/rev/760e97153da8
branches:  trunk
changeset: 516325:760e97153da8
user:      simonb <simonb%NetBSD.org@localhost>
date:      Sun Oct 21 19:24:43 2001 +0000

description:
Remove two cases of:
        #endif          <- from an #ifdef _KERNEL

        #ifdef _KERNEL

diffstat:

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

diffs (29 lines):

diff -r c22492ccb149 -r 760e97153da8 sys/sys/systm.h
--- a/sys/sys/systm.h   Sun Oct 21 18:57:39 2001 +0000
+++ b/sys/sys/systm.h   Sun Oct 21 19:24:43 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: systm.h,v 1.137 2001/09/28 12:14:27 chs Exp $  */
+/*     $NetBSD: systm.h,v 1.138 2001/10/21 19:24:43 simonb Exp $       */
 
 /*-
  * Copyright (c) 1982, 1988, 1991, 1993
@@ -306,9 +306,7 @@
 caddr_t        allocsys __P((caddr_t, caddr_t (*)(caddr_t)));
 #define        ALLOCSYS(base, name, type, num) \
            (name) = (type *)(base); (base) = (caddr_t)ALIGN((name)+(num))
-#endif
 
-#ifdef _KERNEL
 int    setjmp  __P((label_t *));
 void   longjmp __P((label_t *));
 #endif
@@ -326,9 +324,6 @@
 
 #ifdef _KERNEL
 #include <lib/libkern/libkern.h>
-#endif
-
-#ifdef _KERNEL
 
 /*
  * Stuff to handle debugger magic key sequences.



Home | Main Index | Thread Index | Old Index