minix/lib/libc/ansi/ext_fmt.h

14 lines
187 B
C
Raw Normal View History

2005-04-21 16:53:53 +02:00
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
};