blob: 871c868858acbf79f4768becce278460721f5c3f [file] [log] [blame]
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +00001/*
Govindraj Rajaeee28e72023-08-01 15:52:40 -05002 * Copyright (c) 2018-2019, Arm Limited and Contributors. All rights reserved.
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +00003 *
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 */