std_climits.h revision 169691
153383Sn_hibma// -*- C++ -*- forwarding header.
2139825Simp
393569Sjoe// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
453383Sn_hibma// Free Software Foundation, Inc.
553383Sn_hibma//
653383Sn_hibma// This file is part of the GNU ISO C++ Library.  This library is free
753383Sn_hibma// software; you can redistribute it and/or modify it under the
853383Sn_hibma// terms of the GNU General Public License as published by the
953383Sn_hibma// Free Software Foundation; either version 2, or (at your option)
1053383Sn_hibma// any later version.
1153383Sn_hibma
1253383Sn_hibma// This library is distributed in the hope that it will be useful,
1353383Sn_hibma// but WITHOUT ANY WARRANTY; without even the implied warranty of
1453383Sn_hibma// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1553383Sn_hibma// GNU General Public License for more details.
1653383Sn_hibma
1753383Sn_hibma// You should have received a copy of the GNU General Public License along
1853383Sn_hibma// with this library; see the file COPYING.  If not, write to the Free
1953383Sn_hibma// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
2053383Sn_hibma// USA.
2153383Sn_hibma
2253383Sn_hibma// As a special exception, you may use this file as part of a free software
2353383Sn_hibma// library without restriction.  Specifically, if other files instantiate
2453383Sn_hibma// templates or use macros or inline functions from this file, or you compile
2553383Sn_hibma// this file and link it with other files to produce an executable, this
2653383Sn_hibma// file does not by itself cause the resulting executable to be covered by
2753383Sn_hibma// the GNU General Public License.  This exception does not however
2853383Sn_hibma// invalidate any other reasons why the executable file might be covered by
2953383Sn_hibma// the GNU General Public License.
3053383Sn_hibma
3153383Sn_hibma/** @file include/climits
3253383Sn_hibma *  This is a Standard C++ Library file.  You should @c #include this file
3353383Sn_hibma *  in your programs, rather than any of the "*.h" implementation files.
34139513Simp *
35139458Simp *  This is the C++ version of the Standard C Library header @c limits.h,
36139458Simp *  and its contents are (mostly) the same as that header, but are all
37139458Simp *  contained in the namespace @c std (except for names which are defined
38139458Simp *  as macros in C).
39139458Simp */
40139458Simp
41139518Simp//
42139513Simp// ISO C++ 14882: 18.2.2  Implementation properties: C library
43139513Simp//
44139518Simp
45139513Simp#ifndef _GLIBCXX_CLIMITS
46139518Simp#define _GLIBCXX_CLIMITS 1
47139513Simp
48139518Simp#pragma GCC system_header
49139513Simp
50139518Simp#include <limits.h>
51139518Simp
52139513Simp#endif
53139518Simp