Date: Mon, 24 Feb 2003 13:12:08 -0500 Message-Id: <200302241812.h1OIC8P01338@envy.delorie.com> X-Authentication-Warning: envy.delorie.com: dj set sender to dj AT delorie DOT com using -f From: DJ Delorie To: djgpp-workers AT delorie DOT com In-reply-to: <200302241805.h1OI5AM06732@speedy.ludd.luth.se> (ams AT ludd DOT luth DOT se) Subject: Re: HUGE_VAL == INFINITY References: <200302241805 DOT h1OI5AM06732 AT speedy DOT ludd DOT luth DOT se> Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > 2. Where are __dj_huge_val{,f,l} really defined? ./include/math.h: extern double __dj_huge_val; ./include/math.h: #define HUGE_VAL __dj_huge_val ./include/math.h: extern float __dj_huge_valf; ./include/math.h: extern long double __dj_huge_vall; ./include/math.h: #define HUGE_VALF __dj_huge_valf ./include/math.h: #define HUGE_VALL __dj_huge_vall ./src/libc/ansi/math/huge_val.c: double_t __dj_huge_val = { 0x00000, 0x00000, 0x7ff, 0x0 }; ./src/libc/c99/math/hugevalf.c: float_t __dj_huge_valf = { 0x00000, 0xff, 0x0 }; ./src/libc/c99/math/hugevall.c: long_double_t __dj_huge_vall = { 0x00000000, 0x00000000, 0x7fff, 0x0 };