Fixed the prototypes of the _adj_fdiv_* functions.

This commit is contained in:
Alexandre Julliard 2004-05-12 23:22:36 +00:00
parent 43def08e80
commit 8f7c2bc6a5
5 changed files with 40 additions and 56 deletions

View File

@ -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");
} }

View File

@ -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()

View File

@ -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

View File

@ -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

View File

@ -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