ae75f9d4e5
- 755 -> 644
13 lines
187 B
C
13 lines
187 B
C
struct mantissa {
|
|
unsigned long h_32;
|
|
unsigned long l_32;
|
|
};
|
|
|
|
struct EXTEND {
|
|
short sign;
|
|
short exp;
|
|
struct mantissa mantissa;
|
|
#define m1 mantissa.h_32
|
|
#define m2 mantissa.l_32
|
|
};
|
|
|