1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- Added HUGE_VALF to <math.h>.

git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14934 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2005-05-07 17:04:07 +00:00
parent 28f561c61b
commit c8d29ea9c1
10 changed files with 97 additions and 32 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: math.h,v 1.6 2005-02-25 10:14:22 obarthel Exp $
* $Id: math.h,v 1.7 2005-05-07 17:04:07 obarthel Exp $
*
* :ts=4
*
@ -110,6 +110,19 @@ extern double hypot(double x,double y);
/****************************************************************************/
/* The following is not part of the ISO 'C' (1994) standard, but it should
be part of ISO/IEC 9899:1999, also known as "C99". */
/****************************************************************************/
extern float __huge_val_float;
/****************************************************************************/
#define HUGE_VALF ((const float)__huge_val_float)
/****************************************************************************/
#ifdef __cplusplus
}
#endif /* __cplusplus */