diff options
author | Heikki Korpela <heko@cvs.openbsd.org> | 2001-08-12 12:03:04 +0000 |
---|---|---|
committer | Heikki Korpela <heko@cvs.openbsd.org> | 2001-08-12 12:03:04 +0000 |
commit | 8733d65e598e20f5a4415a710e9c51ab3a3d323d (patch) | |
tree | 39173461770e11f8ad331e9aa18365fc4ab2d19f /sys/arch/vax | |
parent | bbbc80b14c0c9c05eb40dfe595d4893002a710bf (diff) |
#(endif|else) foo is incorrect, make it #endif /* foo */
deraadt@ ok
Diffstat (limited to 'sys/arch/vax')
-rw-r--r-- | sys/arch/vax/include/ioa.h | 4 | ||||
-rw-r--r-- | sys/arch/vax/include/ka650.h | 4 | ||||
-rw-r--r-- | sys/arch/vax/include/pmap.h | 4 | ||||
-rw-r--r-- | sys/arch/vax/include/pte.h | 4 | ||||
-rw-r--r-- | sys/arch/vax/uba/ubavar.h | 4 | ||||
-rw-r--r-- | sys/arch/vax/vax/ka780.c | 4 |
6 files changed, 12 insertions, 12 deletions
diff --git a/sys/arch/vax/include/ioa.h b/sys/arch/vax/include/ioa.h index 6c3f333c713..e818d109080 100644 --- a/sys/arch/vax/include/ioa.h +++ b/sys/arch/vax/include/ioa.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ioa.h,v 1.5 2000/04/26 03:08:41 bjc Exp $ */ +/* $OpenBSD: ioa.h,v 1.6 2001/08/12 12:03:03 heko Exp $ */ /* $NetBSD: ioa.h,v 1.5 1999/04/12 20:57:52 pk Exp $ */ /*- * Copyright (c) 1982, 1986 The Regents of the University of California. @@ -116,4 +116,4 @@ struct ioa { #define IOA_TYPMSK 0xf0 #define IOA_SBIA 0x10 -#endif VAX8600 +#endif /* VAX8600 */ diff --git a/sys/arch/vax/include/ka650.h b/sys/arch/vax/include/ka650.h index 84a59ccd90d..6eb4b1587dd 100644 --- a/sys/arch/vax/include/ka650.h +++ b/sys/arch/vax/include/ka650.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ka650.h,v 1.8 2000/04/26 03:08:41 bjc Exp $ */ +/* $OpenBSD: ka650.h,v 1.9 2001/08/12 12:03:03 heko Exp $ */ /* $NetBSD: ka650.h,v 1.6 1997/07/26 10:12:43 ragge Exp $ */ /* * Copyright (c) 1988 The Regents of the University of California. @@ -209,7 +209,7 @@ struct ka650_ipcr { }; #define KA650_IPCR 0x20001e00 -#endif _LOCORE +#endif /* _LOCORE */ /* * Physical start address of the Qbus memory. diff --git a/sys/arch/vax/include/pmap.h b/sys/arch/vax/include/pmap.h index c013ce1a84d..78c3bfac599 100644 --- a/sys/arch/vax/include/pmap.h +++ b/sys/arch/vax/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.11 2001/06/15 22:45:33 miod Exp $ */ +/* $OpenBSD: pmap.h,v 1.12 2001/08/12 12:03:03 heko Exp $ */ /* $NetBSD: pmap.h,v 1.37 1999/08/01 13:48:07 ragge Exp $ */ /* @@ -149,4 +149,4 @@ void pmap_activate __P((struct proc *)); #endif /* _KERNEL */ -#endif PMAP_H +#endif /* PMAP_H */ diff --git a/sys/arch/vax/include/pte.h b/sys/arch/vax/include/pte.h index 072f83de975..3eaefb468dc 100644 --- a/sys/arch/vax/include/pte.h +++ b/sys/arch/vax/include/pte.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pte.h,v 1.6 2000/04/26 03:08:42 bjc Exp $ */ +/* $OpenBSD: pte.h,v 1.7 2001/08/12 12:03:03 heko Exp $ */ /* $NetBSD: pte.h,v 1.13 1999/08/03 19:53:23 ragge Exp $ */ /* @@ -53,7 +53,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) diff --git a/sys/arch/vax/uba/ubavar.h b/sys/arch/vax/uba/ubavar.h index 24975cd99eb..a6c78d66cb4 100644 --- a/sys/arch/vax/uba/ubavar.h +++ b/sys/arch/vax/uba/ubavar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ubavar.h,v 1.8 2000/04/27 03:14:52 bjc Exp $ */ +/* $OpenBSD: ubavar.h,v 1.9 2001/08/12 12:03:03 heko Exp $ */ /* $NetBSD: ubavar.h,v 1.21 1999/01/19 21:04:48 ragge Exp $ */ /* @@ -182,4 +182,4 @@ void ubareset __P((int)); int ubasetup __P((struct uba_softc *, struct buf *, int)); #endif /* _KERNEL */ -#endif !_LOCORE +#endif /* !_LOCORE */ diff --git a/sys/arch/vax/vax/ka780.c b/sys/arch/vax/vax/ka780.c index c69f6cf62ea..4a933f7e601 100644 --- a/sys/arch/vax/vax/ka780.c +++ b/sys/arch/vax/vax/ka780.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ka780.c,v 1.5 2000/04/27 01:10:12 bjc Exp $ */ +/* $OpenBSD: ka780.c,v 1.6 2001/08/12 12:03:03 heko Exp $ */ /* $NetBSD: ka780.c,v 1.14 1999/08/07 10:36:49 ragge Exp $ */ /*- * Copyright (c) 1982, 1986, 1988 The Regents of the University of California. @@ -298,7 +298,7 @@ memlog(m, 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"}; |