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/lib/libkern | |
parent | bbbc80b14c0c9c05eb40dfe595d4893002a710bf (diff) |
#(endif|else) foo is incorrect, make it #endif /* foo */
deraadt@ ok
Diffstat (limited to 'sys/lib/libkern')
-rw-r--r-- | sys/lib/libkern/arch/ns32k/SYS.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libkern/arch/ns32k/SYS.h b/sys/lib/libkern/arch/ns32k/SYS.h index ebad36b057f..4ff7b4cb889 100644 --- a/sys/lib/libkern/arch/ns32k/SYS.h +++ b/sys/lib/libkern/arch/ns32k/SYS.h @@ -1,4 +1,4 @@ -/* $OpenBSD: SYS.h,v 1.2 1997/11/07 15:57:24 niklas Exp $ */ +/* $OpenBSD: SYS.h,v 1.3 2001/08/12 12:03:03 heko Exp $ */ /* $NetBSD: SYS.h,v 1.2 1994/10/26 06:39:44 cgd Exp $ */ /*- @@ -47,7 +47,7 @@ addr $1b,tos; bsr mcount #else #define ENTRY(x) .globl _/**/x; .text; .align 1; _/**/x: -#endif PROF +#endif /* PROF */ #define SYSCALL(x) ENTRY(x); movd SYS_/**/x, r0; svc; bcs cerror #define RSYSCALL(x) SYSCALL(x); ret 0 |