std_csignal.h revision 132720
1132956Smarkm// -*- C++ -*- forwarding header.
2132956Smarkm
3132956Smarkm// Copyright (C) 2000, 2002, 2003 Free Software Foundation, Inc.
4132956Smarkm//
5132956Smarkm// This file is part of the GNU ISO C++ Library.  This library is free
6132956Smarkm// software; you can redistribute it and/or modify it under the
7132956Smarkm// terms of the GNU General Public License as published by the
8132956Smarkm// Free Software Foundation; either version 2, or (at your option)
9132956Smarkm// any later version.
10132956Smarkm
11132956Smarkm// This library is distributed in the hope that it will be useful,
12132956Smarkm// but WITHOUT ANY WARRANTY; without even the implied warranty of
13132956Smarkm// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14132956Smarkm// GNU General Public License for more details.
15132956Smarkm
16132956Smarkm// You should have received a copy of the GNU General Public License along
17132956Smarkm// with this library; see the file COPYING.  If not, write to the Free
18132956Smarkm// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19132956Smarkm// USA.
20132956Smarkm
21132956Smarkm// As a special exception, you may use this file as part of a free software
22132956Smarkm// library without restriction.  Specifically, if other files instantiate
23132956Smarkm// templates or use macros or inline functions from this file, or you compile
24132956Smarkm// this file and link it with other files to produce an executable, this
25132956Smarkm// file does not by itself cause the resulting executable to be covered by
26132956Smarkm// the GNU General Public License.  This exception does not however
27132956Smarkm// invalidate any other reasons why the executable file might be covered by
28132956Smarkm// the GNU General Public License.
29217515Sjkim
30217515Sjkim//
31217515Sjkim// ISO C++ 14882: 20.4.6  C library
32132956Smarkm//
33132956Smarkm
34132956Smarkm#ifndef _GLIBCXX_CSIGNAL
35132956Smarkm#define _GLIBCXX_CSIGNAL 1
36132956Smarkm
37132956Smarkm#pragma GCC system_header
38132956Smarkm
39132956Smarkm#include_next <signal.h>
40217515Sjkim
41#endif
42