mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
[CRT]
Fix MSVC build. svn path=/trunk/; revision=54451
This commit is contained in:
parent
a9e9b29ff5
commit
df03d3cc8b
1 changed files with 3 additions and 1 deletions
|
@ -26,6 +26,9 @@
|
|||
double ldexp (double value, int exp)
|
||||
{
|
||||
register double result;
|
||||
#ifndef __GNUC__
|
||||
register double __dy = (double)exp;
|
||||
#endif
|
||||
|
||||
/* Check for value correctness
|
||||
* and set errno if required
|
||||
|
@ -49,7 +52,6 @@ double ldexp (double value, int exp)
|
|||
: "1");
|
||||
#endif
|
||||
#else /* !__GNUC__ */
|
||||
register double __dy = (double)exp;
|
||||
__asm
|
||||
{
|
||||
fld __dy
|
||||
|
|
Loading…
Reference in a new issue