source: trunk/minix/lib/ansi/ext_fmt.h@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 187 bytes
Line 
1struct mantissa {
2 unsigned long h_32;
3 unsigned long l_32;
4};
5
6struct EXTEND {
7 short sign;
8 short exp;
9 struct mantissa mantissa;
10#define m1 mantissa.h_32
11#define m2 mantissa.l_32
12};
13
Note: See TracBrowser for help on using the repository browser.