mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 19:32:55 +00:00
[LIBM] Fix build
This commit is contained in:
parent
4afb647c78
commit
9e8ed3f817
35 changed files with 139 additions and 112 deletions
|
@ -66,7 +66,7 @@ typedef UINT_PTR AWORD; // x86-64 safe
|
|||
typedef union
|
||||
{
|
||||
float f;
|
||||
unsigned long l;
|
||||
unsigned long long l;
|
||||
} LFLOAT;
|
||||
|
||||
//typedef struct
|
||||
|
@ -78,7 +78,7 @@ typedef unsigned _int64 QWORD;
|
|||
typedef union
|
||||
{
|
||||
double f;
|
||||
unsigned long l[2];
|
||||
unsigned long long l[2];
|
||||
} LDOUBLE;
|
||||
|
||||
typedef __declspec(align(16)) struct
|
||||
|
@ -313,7 +313,7 @@ typedef struct {
|
|||
unsigned char opcode;
|
||||
unsigned char rmbyte;
|
||||
union {
|
||||
unsigned long offset; // this will need work for x86-64
|
||||
unsigned long long offset; // this will need work for x86-64
|
||||
unsigned char imm8;
|
||||
} data;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue