summaryrefslogtreecommitdiff
path: root/mit-pthreads/machdep/sunos-5.3/__math.h
blob: 5404b52c6618b1d1d235b5246f727cbebe5c8d33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * 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