xref: /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_std/csignal (revision 8feb0f0b7eaff0608f8350bbfa3098827b4bb91b)
136ac495dSmrg// -*- C++ -*- forwarding header.
236ac495dSmrg
3*8feb0f0bSmrg// Copyright (C) 1997-2020 Free Software Foundation, Inc.
436ac495dSmrg//
536ac495dSmrg// This file is part of the GNU ISO C++ Library.  This library is free
636ac495dSmrg// software; you can redistribute it and/or modify it under the
736ac495dSmrg// terms of the GNU General Public License as published by the
836ac495dSmrg// Free Software Foundation; either version 3, or (at your option)
936ac495dSmrg// any later version.
1036ac495dSmrg
1136ac495dSmrg// This library is distributed in the hope that it will be useful,
1236ac495dSmrg// but WITHOUT ANY WARRANTY; without even the implied warranty of
1336ac495dSmrg// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1436ac495dSmrg// GNU General Public License for more details.
1536ac495dSmrg
1636ac495dSmrg// Under Section 7 of GPL version 3, you are granted additional
1736ac495dSmrg// permissions described in the GCC Runtime Library Exception, version
1836ac495dSmrg// 3.1, as published by the Free Software Foundation.
1936ac495dSmrg
2036ac495dSmrg// You should have received a copy of the GNU General Public License and
2136ac495dSmrg// a copy of the GCC Runtime Library Exception along with this program;
2236ac495dSmrg// see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
2336ac495dSmrg// <http://www.gnu.org/licenses/>.
2436ac495dSmrg
2536ac495dSmrg/** @file csignal
2636ac495dSmrg *  This is a Standard C++ Library file.  You should @c #include this file
2736ac495dSmrg *  in your programs, rather than any of the @a *.h implementation files.
2836ac495dSmrg *
2936ac495dSmrg *  This is the C++ version of the Standard C Library header @c signal.h,
3036ac495dSmrg *  and its contents are (mostly) the same as that header, but are all
3136ac495dSmrg *  contained in the namespace @c std (except for names which are defined
3236ac495dSmrg *  as macros in C).
3336ac495dSmrg */
3436ac495dSmrg
3536ac495dSmrg//
3636ac495dSmrg// ISO C++ 14882: 20.4.6  C library
3736ac495dSmrg//
3836ac495dSmrg
3936ac495dSmrg#ifndef _GLIBCXX_CSIGNAL
4036ac495dSmrg#define _GLIBCXX_CSIGNAL 1
4136ac495dSmrg
4236ac495dSmrg#pragma GCC system_header
4336ac495dSmrg
4436ac495dSmrg#include <bits/c++config.h>
4536ac495dSmrg#include <signal.h>
4636ac495dSmrg
4736ac495dSmrg// Get rid of those macros defined in <signal.h> in lieu of real functions.
4836ac495dSmrg#undef raise
4936ac495dSmrg
5036ac495dSmrgnamespace std
5136ac495dSmrg{
5236ac495dSmrg  using ::sig_atomic_t;
5336ac495dSmrg  using ::signal;
5436ac495dSmrg  using ::raise;
5536ac495dSmrg} // namespace std
5636ac495dSmrg
5736ac495dSmrg#endif
58