mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 11:31:51 +01:00
16 lines
212 B
C
Executable file
16 lines
212 B
C
Executable file
/*
|
|
* ANSI required entries in math.h
|
|
*
|
|
*/
|
|
#ifdef _ANSI_C_SOURCE
|
|
|
|
#if defined(_IEEE_FP)
|
|
# define HUGE_VAL 1.8e308
|
|
#else
|
|
# define HUGE_VAL 1.797693134862315708e308
|
|
#endif
|
|
|
|
#endif /*_ANSI_C_SOURCE */
|
|
|
|
|
|
|