diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-08-01 07:41:36 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-08-01 07:41:36 +0000 |
commit | 73eef6ca62430088ffd97b809a4a5aec3dc5299b (patch) | |
tree | 10a115d1bd4af7960d48e9d7e3d491c7c26f3627 /sys | |
parent | 7dffa371e27308374f15c1f63d11bef582a20f4c (diff) |
Fix the *longjmp() behaviour - it is legal to reuse a jmp_buf several times.
Gets us a working perl 5.8.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mvme88k/include/setjmp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/include/setjmp.h b/sys/arch/mvme88k/include/setjmp.h index c6418e4045e..4dd01bd63b0 100644 --- a/sys/arch/mvme88k/include/setjmp.h +++ b/sys/arch/mvme88k/include/setjmp.h @@ -1,9 +1,9 @@ -/* $OpenBSD: setjmp.h,v 1.6 2001/08/12 12:03:02 heko Exp $ */ +/* $OpenBSD: setjmp.h,v 1.7 2003/08/01 07:41:33 miod Exp $ */ /* * machine/setjmp.h: machine dependent setjmp-related information. */ #ifndef __MACHINE_SETJMP_H__ #define __MACHINE_SETJMP_H__ -#define _JBLEN 22 /* size, in longs, of a jmp_buf */ +#define _JBLEN 21 /* size, in longs, of a jmp_buf */ #endif /* __MACHINE_SETJMP_H__ */ |