mirror of
https://github.com/reactos/reactos.git
synced 2025-08-10 18:56:00 +00:00

- TSVN choked repeatedly when attempting to merge ~9000 revs into the branch (tried 3 times on 2 different computers) - If someone wants to delete aicom-network-fixes, they are welcome to - Lesson learned: Letting a branch get thousands of revs out of date is a horrible idea svn path=/branches/aicom-network-branch/; revision=44353
25 lines
507 B
C
25 lines
507 B
C
#ifndef __CRT_INTERNAL_IEEE_H
|
|
#define __CRT_INTERNAL_IEEE_H
|
|
|
|
typedef struct {
|
|
unsigned int mantissa:23;
|
|
unsigned int exponent:8;
|
|
unsigned int sign:1;
|
|
} float_t;
|
|
|
|
typedef struct {
|
|
unsigned int mantissal:32;
|
|
unsigned int mantissah:20;
|
|
unsigned int exponent:11;
|
|
unsigned int sign:1;
|
|
} double_t;
|
|
|
|
typedef struct {
|
|
unsigned int mantissal:32;
|
|
unsigned int mantissah:32;
|
|
unsigned int exponent:15;
|
|
unsigned int sign:1;
|
|
unsigned int empty:16;
|
|
} long_double_t;
|
|
|
|
#endif
|