a85c91d6f0
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38993 a95241bf-73f2-0310-859d-f6bbb57e9c96
12 lines
241 B
C
12 lines
241 B
C
/*
|
|
* Copyright 2008, Haiku, Inc.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _ARCH_SETJMP_H_
|
|
#define _ARCH_SETJMP_H_
|
|
|
|
#define _SETJMP_BUF_SZ ((15+2)*4)
|
|
typedef int __jmp_buf[_SETJMP_BUF_SZ];
|
|
|
|
#endif /* _ARCH_SETJMP_H_ */
|