Use comments around the token after a #endif.

This commit is contained in:
simonb 2001-08-31 04:44:54 +00:00
parent e5b3cbb4cd
commit 023bdd2bf2
19 changed files with 40 additions and 40 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: db_instruction.h,v 1.7 2001/04/26 03:10:44 ross Exp $ */
/* $NetBSD: db_instruction.h,v 1.8 2001/08/31 04:44:54 simonb Exp $ */
/*
* Copyright (c) 1999 Christopher G. Demetriou. All rights reserved.
@ -206,7 +206,7 @@ typedef union {
} alpha_instruction;
#endif !defined(ASSEMBLER)
#endif /* !defined(ASSEMBLER) */
/*
*

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.c,v 1.186 2001/08/13 01:12:15 chs Exp $ */
/* $NetBSD: pmap.c,v 1.187 2001/08/31 04:44:54 simonb Exp $ */
/*-
* Copyright (c) 1998, 1999, 2000, 2001 The NetBSD Foundation, Inc.
@ -154,7 +154,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.186 2001/08/13 01:12:15 chs Exp $");
__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.187 2001/08/31 04:44:54 simonb Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -1010,7 +1010,7 @@ pmap_uses_prom_console(void)
|| cputype == ST_DEC_3000_500);
#endif /* NEW_SCC_DRIVER */
}
#endif _PMAP_MAY_USE_PROM_CONSOLE
#endif /* _PMAP_MAY_USE_PROM_CONSOLE */
/*
* pmap_virtual_space: [ INTERFACE ]

View File

@ -1,4 +1,4 @@
/* $NetBSD: cia.h,v 1.10 1999/09/25 21:47:03 is Exp $ */
/* $NetBSD: cia.h,v 1.11 2001/08/31 04:44:55 simonb Exp $ */
/*
* Mach Operating System
@ -142,4 +142,4 @@ void dispatch_cia_ints __P((int, int));
void ciaa_intr __P((void));
void ciab_intr __P((void));
#endif _AMIGA_CIA_
#endif /* _AMIGA_CIA_ */

View File

@ -1,4 +1,4 @@
/* $NetBSD: amigagraph.h,v 1.3 1999/02/16 23:34:11 is Exp $ */
/* $NetBSD: amigagraph.h,v 1.4 2001/08/31 04:44:58 simonb Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@ -80,4 +80,4 @@
struct Window {
u_int8_t dum1[136];
};
#endif AMIGA_GRAPH_H
#endif /* AMIGA_GRAPH_H */

View File

@ -1,4 +1,4 @@
/* $NetBSD: frame.h,v 1.1 2001/02/23 21:23:49 reinoud Exp $ */
/* $NetBSD: frame.h,v 1.2 2001/08/31 04:44:58 simonb Exp $ */
/*
* Copyright (c) 1994-1997 Mark Brinicombe.
@ -194,7 +194,7 @@ void validate_trapframe __P((trapframe_t *, int));
add sp, sp, #(4*15); /* Adjust the stack pointer */ \
ldmia sp, {sp, lr, pc}^ /* Restore lr and exit */
#endif _LOCORE
#endif /* _LOCORE */
#endif /* _ARM32_FRAME_H_ */

View File

@ -1,4 +1,4 @@
/* $NetBSD: frame.h,v 1.2 2001/01/20 17:14:19 bjh21 Exp $ */
/* $NetBSD: frame.h,v 1.3 2001/08/31 04:44:55 simonb Exp $ */
/*
* Copyright (c) 1994-1997 Mark Brinicombe.
@ -88,7 +88,7 @@ struct sigframe {
struct sigcontext sf_sc;
};
#endif _LOCORE
#endif /* _LOCORE */
#endif /* _ARM_FRAME_H_ */

View File

@ -1,4 +1,4 @@
/* $NetBSD: frame.h,v 1.6 2001/04/24 18:15:44 bjh21 Exp $ */
/* $NetBSD: frame.h,v 1.7 2001/08/31 04:44:55 simonb Exp $ */
/*
* Copyright (c) 1999 Ben Harris.
@ -106,7 +106,7 @@ struct fpframe {
register_t ff_regs[8*3];
};
#endif _LOCORE
#endif /* _LOCORE */
#endif /* _ARM26_FRAME_H_ */

View File

@ -1,4 +1,4 @@
/* $NetBSD: kbdvar.h,v 1.3 1997/06/29 20:30:52 leo Exp $ */
/* $NetBSD: kbdvar.h,v 1.4 2001/08/31 04:44:56 simonb Exp $ */
/*
* Copyright (c) 1996 Leo Weppelman.
@ -73,6 +73,6 @@ void kbd_write __P((u_char *, int));
int kbdgetcn __P((void));
void kbdbell __P((void));
void kbdenable __P((void));
#endif _KERNEL
#endif /* _KERNEL */
#endif /* _KBDVAR_H */

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.66 2001/08/26 02:47:35 matt Exp $ */
/* $NetBSD: machdep.c,v 1.67 2001/08/31 04:44:57 simonb Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -705,7 +705,7 @@ cpu_reboot(howto, what)
printf("halted\n\n");
#if 0
ppc_exit();
#endif 0
#endif
}
if (!cold && (howto & RB_DUMP))
dumpsys();
@ -730,7 +730,7 @@ cpu_reboot(howto, what)
*ap1 = 0;
#if 0
ppc_boot(str);
#endif 0
#endif
while (1);
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: fd.c,v 1.3 1999/06/28 01:20:44 sakamoto Exp $ */
/* $NetBSD: fd.c,v 1.4 2001/08/31 04:44:58 simonb Exp $ */
/*-
* Copyright (C) 1997-1998 Kazuki Sakamoto (sakamoto@netbsd.org)
@ -193,7 +193,7 @@ fdinit(un)
#if 0
irq_init();
#endif 0
#endif
fdReset(ctlr);
if (fdc_out(ctlr, CMD_VERSION) != SUCCESS) { /* version check */

View File

@ -1,8 +1,8 @@
/* $NetBSD: profile.h,v 1.3 1996/05/05 06:17:55 briggs Exp $ */
/* $NetBSD: profile.h,v 1.4 2001/08/31 04:44:56 simonb Exp $ */
#ifndef _PROFILE_MACHINE_
#define _PROFILE_MACHINE_
#include <m68k/profile.h>
#endif _PROFILE_MACHINE_
#endif /* _PROFILE_MACHINE_ */

View File

@ -1,4 +1,4 @@
/* $NetBSD: disklabel.h,v 1.6 2000/12/01 00:02:22 scw Exp $ */
/* $NetBSD: disklabel.h,v 1.7 2001/08/31 04:44:56 simonb Exp $ */
/*
* Copyright (c) 1995 Dale Rahn.
@ -148,4 +148,4 @@ struct cpu_disklabel {
u_long magic2;
u_char cfg_4[192];
} __attribute__((__packed__));
#endif _MACHINE_DISKLABEL_H_
#endif /* _MACHINE_DISKLABEL_H_ */

View File

@ -1,4 +1,4 @@
/* $NetBSD: nextrom.h,v 1.6 1999/03/24 23:15:59 dbj Exp $ */
/* $NetBSD: nextrom.h,v 1.7 2001/08/31 04:44:56 simonb Exp $ */
/*
* Copyright (c) 1998 Darrin B. Jewell
* All rights reserved.
@ -124,7 +124,7 @@
#import <mon/assym.h>
#define MG(type, off) \
((type) ((u_int) (mg) + off))
#endif MONITOR
#endif /* MONITOR */
#import <mon/nvram.h>
#import <mon/region.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: dvma.c,v 1.19 2001/04/24 04:31:14 thorpej Exp $ */
/* $NetBSD: dvma.c,v 1.20 2001/08/31 04:44:57 simonb Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@ -235,7 +235,7 @@ dvma_mapin(kmem_va, len, canwait)
#ifdef DEBUG
if (rv == FALSE)
panic("dvma_mapin: null page frame");
#endif DEBUG
#endif /* DEBUG */
iommu_enter((tva & IOMMU_VA_MASK), pa);
pmap_enter(pmap_kernel(), tva, pa | PMAP_NC,

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.71 2001/06/16 00:38:19 tsutsui Exp $ */
/* $NetBSD: machdep.c,v 1.72 2001/08/31 04:44:57 simonb Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -151,7 +151,7 @@ consinit()
ddb_init(nsym, ssym, esym);
}
#endif DDB
#endif /* DDB */
/*
* Now that the console can do input as well as

View File

@ -1,4 +1,4 @@
/* $NetBSD: ka650.h,v 1.7 1999/08/07 10:36:46 ragge Exp $ */
/* $NetBSD: ka650.h,v 1.8 2001/08/31 04:44:56 simonb Exp $ */
/*
* Copyright (c) 1988 The Regents of the University of California.
* All rights reserved.
@ -208,7 +208,7 @@ struct ka650_ipcr {
};
#define KA650_IPCR 0x20001e00
#endif _LOCORE
#endif /* _LOCORE */
/*
* Physical start address of the Qbus memory.

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.h,v 1.46 2001/06/04 15:36:00 ragge Exp $ */
/* $NetBSD: pmap.h,v 1.47 2001/08/31 04:44:57 simonb Exp $ */
/*
* Copyright (c) 1987 Carnegie-Mellon University
@ -174,4 +174,4 @@ pmap_extract(pmap_t pmap, vaddr_t va, paddr_t *pap)
void pmap_bootstrap __P((void));
vaddr_t pmap_map __P((vaddr_t, vaddr_t, vaddr_t, int));
#endif PMAP_H
#endif /* PMAP_H */

View File

@ -1,4 +1,4 @@
/* $NetBSD: pte.h,v 1.18 2000/11/21 05:49:08 chs Exp $ */
/* $NetBSD: pte.h,v 1.19 2001/08/31 04:44:57 simonb Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
@ -51,7 +51,7 @@ struct pte {
typedef struct pte pt_entry_t; /* Mach page table entry */
#endif _LOCORE
#endif /* _LOCORE */
#define PT_ENTRY_NULL ((pt_entry_t *) 0)

View File

@ -1,4 +1,4 @@
/* $NetBSD: ka780.c,v 1.16 2000/06/04 18:02:35 ragge Exp $ */
/* $NetBSD: ka780.c,v 1.17 2001/08/31 04:44:57 simonb Exp $ */
/*-
* Copyright (c) 1982, 1986, 1988 The Regents of the University of California.
* All rights reserved.
@ -298,7 +298,7 @@ memlog(int m, struct mcr780 *mcr)
printf ("mcr%d: multiple errors, not traceable\n", m);
break;
}
#endif TRENDATA
#endif /* TRENDATA */
char *mc780[]={"0","1","2","3","4","5","6","7","8","9","10","11","12","13",
"14","15"};