source: mainline/uspace/lib/cpp/include/csetjmp@ 8fd0675f

Last change on this file since 8fd0675f was b57ba05, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 3 years ago

Update headers in C++ files

  • Property mode set to 100644
File size: 237 bytes
Line 
1/*
2 * SPDX-FileCopyrightText: 2018 Jaroslav Jindrak
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef LIBCPP_CSETJMP
8#define LIBCPP_CSETJMP
9
10#include <setjmp.h>
11
12namespace std
13{
14 using ::jmp_buf;
15 using ::longjmp;
16}
17
18#endif
Note: See TracBrowser for help on using the repository browser.