2008-06-25 22:57:34 +00:00
|
|
|
/*
|
2012-07-19 18:11:40 +00:00
|
|
|
* Copyright 2008-2012 Haiku, Inc. All Rights Reserved.
|
2008-06-25 22:57:34 +00:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _ARCH_SETJMP_H_
|
|
|
|
#define _ARCH_SETJMP_H_
|
|
|
|
|
2010-11-03 21:46:47 +00:00
|
|
|
|
2010-10-18 00:50:59 +00:00
|
|
|
#define _SETJMP_BUF_SZ ((15+2)*4)
|
2008-06-25 22:57:34 +00:00
|
|
|
typedef int __jmp_buf[_SETJMP_BUF_SZ];
|
|
|
|
|
|
|
|
#endif /* _ARCH_SETJMP_H_ */
|