std_cfloat.h revision 296373
1132451Sroberto// -*- C++ -*- forwarding header.
2132451Sroberto
3132451Sroberto// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
4132451Sroberto// Free Software Foundation, Inc.
5182007Sroberto//
6182007Sroberto// This file is part of the GNU ISO C++ Library.  This library is free
7132451Sroberto// software; you can redistribute it and/or modify it under the
8132451Sroberto// terms of the GNU General Public License as published by the
9132451Sroberto// Free Software Foundation; either version 2, or (at your option)
10132451Sroberto// any later version.
11182007Sroberto
12182007Sroberto// This library is distributed in the hope that it will be useful,
13182007Sroberto// but WITHOUT ANY WARRANTY; without even the implied warranty of
14182007Sroberto// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15200576Sroberto// GNU General Public License for more details.
16200576Sroberto
17200576Sroberto// You should have received a copy of the GNU General Public License along
18182007Sroberto// with this library; see the file COPYING.  If not, write to the Free
19182007Sroberto// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
20182007Sroberto// USA.
21182007Sroberto
22182007Sroberto// As a special exception, you may use this file as part of a free software
23182007Sroberto// library without restriction.  Specifically, if other files instantiate
24182007Sroberto// templates or use macros or inline functions from this file, or you compile
25182007Sroberto// this file and link it with other files to produce an executable, this
26182007Sroberto// file does not by itself cause the resulting executable to be covered by
27182007Sroberto// the GNU General Public License.  This exception does not however
28182007Sroberto// invalidate any other reasons why the executable file might be covered by
29182007Sroberto// the GNU General Public License.
30182007Sroberto
31182007Sroberto/** @file include/cfloat
32182007Sroberto *  This is a Standard C++ Library file.  You should @c #include this file
33182007Sroberto *  in your programs, rather than any of the "*.h" implementation files.
34182007Sroberto *
35182007Sroberto *  This is the C++ version of the Standard C Library header @c float.h,
36182007Sroberto *  and its contents are (mostly) the same as that header, but are all
37182007Sroberto *  contained in the namespace @c std (except for names which are defined
38182007Sroberto *  as macros in C).
39182007Sroberto */
40182007Sroberto
41182007Sroberto//
42182007Sroberto// ISO C++ 14882: 18.2.2  Implementation properties: C library
43182007Sroberto//
44182007Sroberto
45182007Sroberto#ifndef _GLIBCXX_CFLOAT
46200576Sroberto#define _GLIBCXX_CFLOAT 1
47200576Sroberto
48200576Sroberto#pragma GCC system_header
49200576Sroberto
50200576Sroberto#include <float.h>
51200576Sroberto
52200576Sroberto#endif
53200576Sroberto