mirror of
https://review.haiku-os.org/haiku
synced 2025-01-19 13:01:29 +01:00
14 lines
269 B
C
14 lines
269 B
C
|
/*
|
||
|
* Copyright 2019 Jaroslaw Pelczar <jarek@jpelczar.com>
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
|
||
|
#ifndef _ARCH_SETJMP_H_
|
||
|
#define _ARCH_SETJMP_H_
|
||
|
|
||
|
|
||
|
#define _SETJMP_BUF_SZ (32)
|
||
|
typedef __int128_t __jmp_buf[_SETJMP_BUF_SZ];
|
||
|
|
||
|
#endif /* _ARCH_SETJMP_H_ */
|