5ac9b50641
Change-Id: I131a44fbcf7b4f6471cc737cff40bd2966ec9764
14 lines
281 B
C
14 lines
281 B
C
/*
|
|
* Copyright 2018-2019 Haiku, Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _ARCH_SETJMP_H_
|
|
#define _ARCH_SETJMP_H_
|
|
|
|
|
|
#define _SETJMP_BUF_SZ (1+(2*12)+1)
|
|
typedef unsigned long __jmp_buf[_SETJMP_BUF_SZ];
|
|
|
|
|
|
#endif /* _ARCH_SETJMP_H_ */
|