diff options
| author | thorpej <thorpej@NetBSD.org> | 1995-12-16 01:03:33 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 1995-12-16 01:03:33 +0000 |
| commit | d6886078f2f69e01263b43285dd53bd650081c9c (patch) | |
| tree | b83bc8b7a688c6ad0843dcabca668aed5a208b8b /gnu/lib/libg++/g++-include | |
| parent | a7565806e7858f94b7ab7a4a49ad69ea79fa0899 (diff) | |
Don't define MAXFLOAT if __NetBSD__ is defined. Mark this XXX. Hopefully,
we won't have to worry about it when libg++ is upgraded. This is necessary
for libg++ to compile with -Werror.
Diffstat (limited to 'gnu/lib/libg++/g++-include')
| -rw-r--r-- | gnu/lib/libg++/g++-include/values.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/lib/libg++/g++-include/values.h b/gnu/lib/libg++/g++-include/values.h index 17a5f485b06..5cc571b5a51 100644 --- a/gnu/lib/libg++/g++-include/values.h +++ b/gnu/lib/libg++/g++-include/values.h @@ -15,7 +15,7 @@ You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: values.h,v 1.3 1993/08/02 17:22:22 mycroft Exp $ + $Id: values.h,v 1.4 1995/12/16 01:03:33 thorpej Exp $ */ #ifndef _values_h @@ -153,7 +153,9 @@ extern float _maxfloat, _minfloat; #define MAXDOUBLE 1.701411834604692293e+38 #define MINDOUBLE (2.938735877055718770e-39) +#ifndef __NetBSD__ /* XXX */ #define MAXFLOAT 1.7014117331926443e+38 +#endif /* ! __NetBSD__ */ #define MINFLOAT 2.9387358770557188e-39 #define _IEEE 0 |
