xref: /haiku/headers/posix/arch/arm/arch_setjmp.h (revision 56187df6ebd9d1fb16bf954fce8df0999e9e3048)
1 /*
2  * Copyright 2008, Haiku, Inc.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _ARCH_SETJMP_H_
6 #define _ARCH_SETJMP_H_
7 
8 #define _SETJMP_BUF_SZ ((15+2)*4)
9 typedef int __jmp_buf[_SETJMP_BUF_SZ];
10 
11 #endif	/* _ARCH_SETJMP_H_ */
12