zig/lib/libc/include/aarch64-linux-gnu/bits/setjmp.h

33 lines
1.1 KiB
C
Raw Normal View History

2019-03-08 01:16:10 +08:00
/* Copyright (C) 1997-2019 Free Software Foundation, Inc.
2019-03-05 11:15:53 +08:00
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
2019-03-08 01:16:10 +08:00
modify it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation; either version 2.1 of the
License, or (at your option) any later version.
2019-03-05 11:15:53 +08:00
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>. */
#ifndef _BITS_SETJMP_H
2019-03-08 01:16:10 +08:00
#define _BITS_SETJMP_H 1
2019-03-05 11:15:53 +08:00
#if !defined _SETJMP_H && !defined _PTHREAD_H
# error "Never include <bits/setjmp.h> directly; use <setjmp.h> instead."
#endif
#ifndef _ASM
2019-03-08 01:16:10 +08:00
/* Jump buffer contains:
x19-x28, x29(fp), x30(lr), (x31)sp, d8-d15. Other registers are not
saved. */
__extension__ typedef unsigned long long __jmp_buf [22];
2019-03-05 11:15:53 +08:00
#endif
2019-03-08 01:16:10 +08:00
#endif