xref: /haiku/headers/posix/arch/arm64/arch_setjmp.h (revision c237c4ce593ee823d9867fd997e51e4c447f5623)
1 /*
2  * Copyright 2019 Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 #ifndef _ARCH_SETJMP_H_
7 #define _ARCH_SETJMP_H_
8 
9 
10 #define _SETJMP_BUF_SZ (32)
11 typedef __int128_t __jmp_buf[_SETJMP_BUF_SZ];
12 
13 #endif	/* _ARCH_SETJMP_H_ */
14