haiku/headers/posix/arch/arm64/arch_setjmp.h
Jaroslaw Pelczar 1f52c921e2 ARM64: Initial changes so we can compile GCC toolchain
Signed-off-by: Jaroslaw Pelczar <jarek@jpelczar.com>
Change-Id: I0859d0619d601efd003472e2846d2f980ee2e457
Reviewed-on: https://review.haiku-os.org/c/haiku/+/1799
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
2019-08-30 19:05:16 +00:00

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_ */