mariadb/mit-pthreads/machdep/sunos-5.3/__math.h
bk@work.mysql.com f4c589ff6c Import changeset
2000-07-31 21:29:14 +02:00

16 lines
215 B
C
Executable file

/*
* ANSI/POSIX
*/
typedef union _h_val {
unsigned long _i[2];
double _d;
} _h_val;
#ifdef __STDC__
extern const _h_val __huge_val;
#else
extern _h_val __huge_val;
#endif
#define HUGE_VAL __huge_val._d