blob: be8e2c01ad61b804f562602bf7cfe096fe7e1c13 [file] [log] [blame]
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +00001/*
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
Julius Werner53456fc2019-07-09 13:49:11 -070012#ifndef __ASSEMBLER__
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +000013
14#include <cdefs.h>
15
16int setjmp(jmp_buf env);
17__dead2 void longjmp(jmp_buf env, int val);
18
Julius Werner53456fc2019-07-09 13:49:11 -070019#endif /* __ASSEMBLER__ */
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +000020#endif /* SETJMP_H */