Path: blob/main/system/lib/llvm-libc/src/setjmp/sigsetjmp.h
6175 views
//===-- Implementation header for sigsetjmp ---------------------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef LLVM_LIBC_SRC_SETJMP_SIGSETJMP_H9#define LLVM_LIBC_SRC_SETJMP_SIGSETJMP_H1011#include "hdr/types/jmp_buf.h"12#include "src/__support/macros/config.h"13#include "src/__support/macros/properties/compiler.h"1415namespace LIBC_NAMESPACE_DECL {1617#ifdef LIBC_COMPILER_IS_GCC18[[gnu::nothrow]]19#endif20[[gnu::returns_twice]] int21sigsetjmp(sigjmp_buf buf, int savesigs);2223} // namespace LIBC_NAMESPACE_DECL2425#endif // LLVM_LIBC_SRC_SETJMP_SIGSETJMP_H262728