1 /* 2 * Copyright (c) 2018-2019, Arm Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef SETJMP_H 8 #define SETJMP_H 9 10 #include <setjmp_.h> 11 12 #ifndef __ASSEMBLER__ 13 14 #include <cdefs.h> 15 16 int setjmp(jmp_buf env); 17 __dead2 void longjmp(jmp_buf env, int val); 18 19 #endif /* __ASSEMBLER__ */ 20 #endif /* SETJMP_H */ 21