source:
trunk/minix/lib/ansi/ext_fmt.h@
11
| Last change on this file since 11 was 9, checked in by , 14 years ago | |
|---|---|
| File size: 187 bytes | |
| Rev | Line | |
|---|---|---|
| [9] | 1 | struct mantissa { |
| 2 | unsigned long h_32; | |
| 3 | unsigned long l_32; | |
| 4 | }; | |
| 5 | ||
| 6 | struct 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.