summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2003-08-01 07:41:36 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2003-08-01 07:41:36 +0000
commit73eef6ca62430088ffd97b809a4a5aec3dc5299b (patch)
tree10a115d1bd4af7960d48e9d7e3d491c7c26f3627 /sys
parent7dffa371e27308374f15c1f63d11bef582a20f4c (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.h4
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__ */