diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-01-07 22:01:36 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-01-07 22:01:36 +0000 |
commit | 6606aa1c278fffb858c92f06db452f6e388d1508 (patch) | |
tree | 9652dfcd42b8bb9070bbdd85702ed02436aaf4f8 /lib/libc/arch/m88k/gen/_setjmp.S | |
parent | c25efccd5d2ffbfd33715299f91e5d6b4bfe7641 (diff) |
Get static rcsid correctly, better style for .S files, trim whitespace.
Diffstat (limited to 'lib/libc/arch/m88k/gen/_setjmp.S')
-rw-r--r-- | lib/libc/arch/m88k/gen/_setjmp.S | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libc/arch/m88k/gen/_setjmp.S b/lib/libc/arch/m88k/gen/_setjmp.S index a5f7924df52..393b3aefe09 100644 --- a/lib/libc/arch/m88k/gen/_setjmp.S +++ b/lib/libc/arch/m88k/gen/_setjmp.S @@ -29,8 +29,8 @@ */ #if defined(LIBC_SCCS) - .text - .string "$OpenBSD: _setjmp.S,v 1.4 2003/01/04 00:13:11 miod Exp $\0" + .data + .string "$OpenBSD: _setjmp.S,v 1.5 2003/01/07 22:01:29 miod Exp $" #endif /* LIBC_SCCS */ #include "SYS.h" @@ -43,18 +43,18 @@ * the last call to * _setjmp(a) * by restoring registers from the stack, - * The previous signal state is NOT saved + * The previous signal state is NOT saved * or restored. * - * For m88k, we define our jmp_buf length + * For m88k, we define our jmp_buf length * to be the size of 22 longs. <machine/setjmp.h> * The buffer's usage is as follows: - * + * * jmp_buf[0] return address * jmp_buf[1] signal set (if used) * jmp_buf[2 to 19] r14 to r31 * jmp_buf[20] 'used' flag - * jmp_buf[21] setjmp type + * jmp_buf[21] setjmp type * */ |