mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
Fixed the prototypes of the _adj_fdiv_* functions.
This commit is contained in:
parent
43def08e80
commit
8f7c2bc6a5
@ -759,56 +759,48 @@ MSVCRT_ldiv_t MSVCRT_ldiv(long num, long denom)
|
|||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* _adj_fdiv_m16i (MSVCRT.@)
|
* _adj_fdiv_m16i (MSVCRT.@)
|
||||||
* FIXME
|
|
||||||
* This function is likely to have the wrong number of arguments.
|
|
||||||
*
|
*
|
||||||
* NOTE
|
* NOTE
|
||||||
* I _think_ this function is intended to work around the Pentium
|
* I _think_ this function is intended to work around the Pentium
|
||||||
* fdiv bug.
|
* fdiv bug.
|
||||||
*/
|
*/
|
||||||
void _adj_fdiv_m16i(void)
|
void __stdcall _adj_fdiv_m16i( short arg )
|
||||||
{
|
{
|
||||||
TRACE("(): stub\n");
|
TRACE("(): stub\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* _adj_fdiv_m32 (MSVCRT.@)
|
* _adj_fdiv_m32 (MSVCRT.@)
|
||||||
* FIXME
|
|
||||||
* This function is likely to have the wrong number of arguments.
|
|
||||||
*
|
*
|
||||||
* NOTE
|
* NOTE
|
||||||
* I _think_ this function is intended to work around the Pentium
|
* I _think_ this function is intended to work around the Pentium
|
||||||
* fdiv bug.
|
* fdiv bug.
|
||||||
*/
|
*/
|
||||||
void _adj_fdiv_m32(void)
|
void __stdcall _adj_fdiv_m32( unsigned int arg )
|
||||||
{
|
{
|
||||||
TRACE("(): stub\n");
|
TRACE("(): stub\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* _adj_fdiv_m32i (MSVCRT.@)
|
* _adj_fdiv_m32i (MSVCRT.@)
|
||||||
* FIXME
|
|
||||||
* This function is likely to have the wrong number of arguments.
|
|
||||||
*
|
*
|
||||||
* NOTE
|
* NOTE
|
||||||
* I _think_ this function is intended to work around the Pentium
|
* I _think_ this function is intended to work around the Pentium
|
||||||
* fdiv bug.
|
* fdiv bug.
|
||||||
*/
|
*/
|
||||||
void _adj_fdiv_m32i(void)
|
void __stdcall _adj_fdiv_m32i( int arg )
|
||||||
{
|
{
|
||||||
TRACE("(): stub\n");
|
TRACE("(): stub\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* _adj_fdiv_m64 (MSVCRT.@)
|
* _adj_fdiv_m64 (MSVCRT.@)
|
||||||
* FIXME
|
|
||||||
* This function is likely to have the wrong number of arguments.
|
|
||||||
*
|
*
|
||||||
* NOTE
|
* NOTE
|
||||||
* I _think_ this function is intended to work around the Pentium
|
* I _think_ this function is intended to work around the Pentium
|
||||||
* fdiv bug.
|
* fdiv bug.
|
||||||
*/
|
*/
|
||||||
void _adj_fdiv_m64(void)
|
void __stdcall _adj_fdiv_m64( unsigned __int64 arg )
|
||||||
{
|
{
|
||||||
TRACE("(): stub\n");
|
TRACE("(): stub\n");
|
||||||
}
|
}
|
||||||
@ -829,56 +821,48 @@ void _adj_fdiv_r(void)
|
|||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* _adj_fdivr_m16i (MSVCRT.@)
|
* _adj_fdivr_m16i (MSVCRT.@)
|
||||||
* FIXME
|
|
||||||
* This function is likely to have the wrong number of arguments.
|
|
||||||
*
|
*
|
||||||
* NOTE
|
* NOTE
|
||||||
* I _think_ this function is intended to work around the Pentium
|
* I _think_ this function is intended to work around the Pentium
|
||||||
* fdiv bug.
|
* fdiv bug.
|
||||||
*/
|
*/
|
||||||
void _adj_fdivr_m16i(void)
|
void __stdcall _adj_fdivr_m16i( short arg )
|
||||||
{
|
{
|
||||||
TRACE("(): stub\n");
|
TRACE("(): stub\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* _adj_fdivr_m32 (MSVCRT.@)
|
* _adj_fdivr_m32 (MSVCRT.@)
|
||||||
* FIXME
|
|
||||||
* This function is likely to have the wrong number of arguments.
|
|
||||||
*
|
*
|
||||||
* NOTE
|
* NOTE
|
||||||
* I _think_ this function is intended to work around the Pentium
|
* I _think_ this function is intended to work around the Pentium
|
||||||
* fdiv bug.
|
* fdiv bug.
|
||||||
*/
|
*/
|
||||||
void _adj_fdivr_m32(void)
|
void __stdcall _adj_fdivr_m32( unsigned int arg )
|
||||||
{
|
{
|
||||||
TRACE("(): stub\n");
|
TRACE("(): stub\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* _adj_fdivr_m32i (MSVCRT.@)
|
* _adj_fdivr_m32i (MSVCRT.@)
|
||||||
* FIXME
|
|
||||||
* This function is likely to have the wrong number of arguments.
|
|
||||||
*
|
*
|
||||||
* NOTE
|
* NOTE
|
||||||
* I _think_ this function is intended to work around the Pentium
|
* I _think_ this function is intended to work around the Pentium
|
||||||
* fdiv bug.
|
* fdiv bug.
|
||||||
*/
|
*/
|
||||||
void _adj_fdivr_m32i(void)
|
void __stdcall _adj_fdivr_m32i( int arg )
|
||||||
{
|
{
|
||||||
TRACE("(): stub\n");
|
TRACE("(): stub\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* _adj_fdivr_m64 (MSVCRT.@)
|
* _adj_fdivr_m64 (MSVCRT.@)
|
||||||
* FIXME
|
|
||||||
* This function is likely to have the wrong number of arguments.
|
|
||||||
*
|
*
|
||||||
* NOTE
|
* NOTE
|
||||||
* I _think_ this function is intended to work around the Pentium
|
* I _think_ this function is intended to work around the Pentium
|
||||||
* fdiv bug.
|
* fdiv bug.
|
||||||
*/
|
*/
|
||||||
void _adj_fdivr_m64(void)
|
void __stdcall _adj_fdivr_m64( unsigned __int64 arg )
|
||||||
{
|
{
|
||||||
TRACE("(): stub\n");
|
TRACE("(): stub\n");
|
||||||
}
|
}
|
||||||
|
@ -146,15 +146,15 @@
|
|||||||
@ cdecl _abnormal_termination()
|
@ cdecl _abnormal_termination()
|
||||||
@ cdecl _access(str long)
|
@ cdecl _access(str long)
|
||||||
@ extern _acmdln MSVCRT__acmdln
|
@ extern _acmdln MSVCRT__acmdln
|
||||||
@ cdecl _adj_fdiv_m16i()
|
@ stdcall _adj_fdiv_m16i(long)
|
||||||
@ cdecl _adj_fdiv_m32()
|
@ stdcall _adj_fdiv_m32(long)
|
||||||
@ cdecl _adj_fdiv_m32i()
|
@ stdcall _adj_fdiv_m32i(long)
|
||||||
@ cdecl _adj_fdiv_m64()
|
@ stdcall _adj_fdiv_m64(long long)
|
||||||
@ cdecl _adj_fdiv_r()
|
@ cdecl _adj_fdiv_r()
|
||||||
@ cdecl _adj_fdivr_m16i()
|
@ stdcall _adj_fdivr_m16i(long)
|
||||||
@ cdecl _adj_fdivr_m32()
|
@ stdcall _adj_fdivr_m32(long)
|
||||||
@ cdecl _adj_fdivr_m32i()
|
@ stdcall _adj_fdivr_m32i(long)
|
||||||
@ cdecl _adj_fdivr_m64()
|
@ stdcall _adj_fdivr_m64(long long)
|
||||||
@ cdecl _adj_fpatan()
|
@ cdecl _adj_fpatan()
|
||||||
@ cdecl _adj_fprem()
|
@ cdecl _adj_fprem()
|
||||||
@ cdecl _adj_fprem1()
|
@ cdecl _adj_fprem1()
|
||||||
|
@ -507,15 +507,15 @@
|
|||||||
@ cdecl _abnormal_termination() msvcrt._abnormal_termination
|
@ cdecl _abnormal_termination() msvcrt._abnormal_termination
|
||||||
@ cdecl _access(str long) msvcrt._access
|
@ cdecl _access(str long) msvcrt._access
|
||||||
@ extern _acmdln msvcrt._acmdln
|
@ extern _acmdln msvcrt._acmdln
|
||||||
@ cdecl _adj_fdiv_m16i() msvcrt._adj_fdiv_m16i
|
@ stdcall _adj_fdiv_m16i(long) msvcrt._adj_fdiv_m16i
|
||||||
@ cdecl _adj_fdiv_m32() msvcrt._adj_fdiv_m32
|
@ stdcall _adj_fdiv_m32(long) msvcrt._adj_fdiv_m32
|
||||||
@ cdecl _adj_fdiv_m32i() msvcrt._adj_fdiv_m32i
|
@ stdcall _adj_fdiv_m32i(long) msvcrt._adj_fdiv_m32i
|
||||||
@ cdecl _adj_fdiv_m64() msvcrt._adj_fdiv_m64
|
@ stdcall _adj_fdiv_m64(long long) msvcrt._adj_fdiv_m64
|
||||||
@ cdecl _adj_fdiv_r() msvcrt._adj_fdiv_r
|
@ cdecl _adj_fdiv_r() msvcrt._adj_fdiv_r
|
||||||
@ cdecl _adj_fdivr_m16i() msvcrt._adj_fdivr_m16i
|
@ stdcall _adj_fdivr_m16i(long) msvcrt._adj_fdivr_m16i
|
||||||
@ cdecl _adj_fdivr_m32() msvcrt._adj_fdivr_m32
|
@ stdcall _adj_fdivr_m32(long) msvcrt._adj_fdivr_m32
|
||||||
@ cdecl _adj_fdivr_m32i() msvcrt._adj_fdivr_m32i
|
@ stdcall _adj_fdivr_m32i(long) msvcrt._adj_fdivr_m32i
|
||||||
@ cdecl _adj_fdivr_m64() msvcrt._adj_fdivr_m64
|
@ stdcall _adj_fdivr_m64(long long) msvcrt._adj_fdivr_m64
|
||||||
@ cdecl _adj_fpatan() msvcrt._adj_fpatan
|
@ cdecl _adj_fpatan() msvcrt._adj_fpatan
|
||||||
@ cdecl _adj_fprem() msvcrt._adj_fprem
|
@ cdecl _adj_fprem() msvcrt._adj_fprem
|
||||||
@ cdecl _adj_fprem1() msvcrt._adj_fprem1
|
@ cdecl _adj_fprem1() msvcrt._adj_fprem1
|
||||||
|
@ -559,15 +559,15 @@
|
|||||||
@ cdecl _abnormal_termination() msvcrt._abnormal_termination
|
@ cdecl _abnormal_termination() msvcrt._abnormal_termination
|
||||||
@ cdecl _access(str long) msvcrt._access
|
@ cdecl _access(str long) msvcrt._access
|
||||||
@ extern _acmdln msvcrt._acmdln
|
@ extern _acmdln msvcrt._acmdln
|
||||||
@ cdecl _adj_fdiv_m16i() msvcrt._adj_fdiv_m16i
|
@ stdcall _adj_fdiv_m16i(long) msvcrt._adj_fdiv_m16i
|
||||||
@ cdecl _adj_fdiv_m32() msvcrt._adj_fdiv_m32
|
@ stdcall _adj_fdiv_m32(long) msvcrt._adj_fdiv_m32
|
||||||
@ cdecl _adj_fdiv_m32i() msvcrt._adj_fdiv_m32i
|
@ stdcall _adj_fdiv_m32i(long) msvcrt._adj_fdiv_m32i
|
||||||
@ cdecl _adj_fdiv_m64() msvcrt._adj_fdiv_m64
|
@ stdcall _adj_fdiv_m64(long long) msvcrt._adj_fdiv_m64
|
||||||
@ cdecl _adj_fdiv_r() msvcrt._adj_fdiv_r
|
@ cdecl _adj_fdiv_r() msvcrt._adj_fdiv_r
|
||||||
@ cdecl _adj_fdivr_m16i() msvcrt._adj_fdivr_m16i
|
@ stdcall _adj_fdivr_m16i(long) msvcrt._adj_fdivr_m16i
|
||||||
@ cdecl _adj_fdivr_m32() msvcrt._adj_fdivr_m32
|
@ stdcall _adj_fdivr_m32(long) msvcrt._adj_fdivr_m32
|
||||||
@ cdecl _adj_fdivr_m32i() msvcrt._adj_fdivr_m32i
|
@ stdcall _adj_fdivr_m32i(long) msvcrt._adj_fdivr_m32i
|
||||||
@ cdecl _adj_fdivr_m64() msvcrt._adj_fdivr_m64
|
@ stdcall _adj_fdivr_m64(long long) msvcrt._adj_fdivr_m64
|
||||||
@ cdecl _adj_fpatan() msvcrt._adj_fpatan
|
@ cdecl _adj_fpatan() msvcrt._adj_fpatan
|
||||||
@ cdecl _adj_fprem() msvcrt._adj_fprem
|
@ cdecl _adj_fprem() msvcrt._adj_fprem
|
||||||
@ cdecl _adj_fprem1() msvcrt._adj_fprem1
|
@ cdecl _adj_fprem1() msvcrt._adj_fprem1
|
||||||
|
@ -168,15 +168,15 @@
|
|||||||
@ cdecl _abnormal_termination() msvcrt._abnormal_termination
|
@ cdecl _abnormal_termination() msvcrt._abnormal_termination
|
||||||
@ cdecl _access(str long) msvcrt._access
|
@ cdecl _access(str long) msvcrt._access
|
||||||
@ extern _acmdln msvcrt._acmdln
|
@ extern _acmdln msvcrt._acmdln
|
||||||
@ cdecl _adj_fdiv_m16i() msvcrt._adj_fdiv_m16i
|
@ stdcall _adj_fdiv_m16i(long) msvcrt._adj_fdiv_m16i
|
||||||
@ cdecl _adj_fdiv_m32() msvcrt._adj_fdiv_m32
|
@ stdcall _adj_fdiv_m32(long) msvcrt._adj_fdiv_m32
|
||||||
@ cdecl _adj_fdiv_m32i() msvcrt._adj_fdiv_m32i
|
@ stdcall _adj_fdiv_m32i(long) msvcrt._adj_fdiv_m32i
|
||||||
@ cdecl _adj_fdiv_m64() msvcrt._adj_fdiv_m64
|
@ stdcall _adj_fdiv_m64(long long) msvcrt._adj_fdiv_m64
|
||||||
@ cdecl _adj_fdiv_r() msvcrt._adj_fdiv_r
|
@ cdecl _adj_fdiv_r() msvcrt._adj_fdiv_r
|
||||||
@ cdecl _adj_fdivr_m16i() msvcrt._adj_fdivr_m16i
|
@ stdcall _adj_fdivr_m16i(long) msvcrt._adj_fdivr_m16i
|
||||||
@ cdecl _adj_fdivr_m32() msvcrt._adj_fdivr_m32
|
@ stdcall _adj_fdivr_m32(long) msvcrt._adj_fdivr_m32
|
||||||
@ cdecl _adj_fdivr_m32i() msvcrt._adj_fdivr_m32i
|
@ stdcall _adj_fdivr_m32i(long) msvcrt._adj_fdivr_m32i
|
||||||
@ cdecl _adj_fdivr_m64() msvcrt._adj_fdivr_m64
|
@ stdcall _adj_fdivr_m64(long long) msvcrt._adj_fdivr_m64
|
||||||
@ cdecl _adj_fpatan() msvcrt._adj_fpatan
|
@ cdecl _adj_fpatan() msvcrt._adj_fpatan
|
||||||
@ cdecl _adj_fprem() msvcrt._adj_fprem
|
@ cdecl _adj_fprem() msvcrt._adj_fprem
|
||||||
@ cdecl _adj_fprem1() msvcrt._adj_fprem1
|
@ cdecl _adj_fprem1() msvcrt._adj_fprem1
|
||||||
|
Loading…
Reference in New Issue
Block a user