blob: 6b5115e112a5657a0cbad0be32b40a7e6c6b40c9 [file] [log] [blame]
//===-- Implementation header for setjmp ------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIBC_SRC_SETJMP_SETJMP_H
#define LLVM_LIBC_SRC_SETJMP_SETJMP_H
// This header has the _impl prefix in its name to avoid conflict with the
// public header setjmp.h which is also included. here.
#include <setjmp.h>
namespace __llvm_libc {
int setjmp(__jmp_buf *buf);
} // namespace __llvm_libc
#endif // LLVM_LIBC_SRC_SETJMP_SETJMP_H