Fixed the prototypes of the _adj_fdiv_* functions.
authorAlexandre Julliard <julliard@winehq.org>
Wed, 12 May 2004 23:22:36 +0000 (23:22 +0000)
committerAlexandre Julliard <julliard@winehq.org>
Wed, 12 May 2004 23:22:36 +0000 (23:22 +0000)
dlls/msvcrt/math.c
dlls/msvcrt/msvcrt.spec
dlls/msvcrt20/msvcrt20.spec
dlls/msvcrt40/msvcrt40.spec
dlls/msvcrtd/msvcrtd.spec

index b2fc6df..ad077f8 100644 (file)
@@ -759,56 +759,48 @@ MSVCRT_ldiv_t MSVCRT_ldiv(long num, long denom)
 
 /***********************************************************************
  *             _adj_fdiv_m16i (MSVCRT.@)
- * FIXME
- *    This function is likely to have the wrong number of arguments.
  *
  * NOTE
  *    I _think_ this function is intended to work around the Pentium
  *    fdiv bug.
  */
-void _adj_fdiv_m16i(void)
+void __stdcall _adj_fdiv_m16i( short arg )
 {
   TRACE("(): stub\n");
 }
 
 /***********************************************************************
  *             _adj_fdiv_m32 (MSVCRT.@)
- * FIXME
- *    This function is likely to have the wrong number of arguments.
  *
  * NOTE
  *    I _think_ this function is intended to work around the Pentium
  *    fdiv bug.
  */
-void _adj_fdiv_m32(void)
+void __stdcall _adj_fdiv_m32( unsigned int arg )
 {
   TRACE("(): stub\n");
 }
 
 /***********************************************************************
  *             _adj_fdiv_m32i (MSVCRT.@)
- * FIXME
- *    This function is likely to have the wrong number of arguments.
  *
  * NOTE
  *    I _think_ this function is intended to work around the Pentium
  *    fdiv bug.
  */
-void _adj_fdiv_m32i(void)
+void __stdcall _adj_fdiv_m32i( int arg )
 {
   TRACE("(): stub\n");
 }
 
 /***********************************************************************
  *             _adj_fdiv_m64 (MSVCRT.@)
- * FIXME
- *    This function is likely to have the wrong number of arguments.
  *
  * NOTE
  *    I _think_ this function is intended to work around the Pentium
  *    fdiv bug.
  */
-void _adj_fdiv_m64(void)
+void __stdcall _adj_fdiv_m64( unsigned __int64 arg )
 {
   TRACE("(): stub\n");
 }
@@ -829,56 +821,48 @@ void _adj_fdiv_r(void)
 
 /***********************************************************************
  *             _adj_fdivr_m16i (MSVCRT.@)
- * FIXME
- *    This function is likely to have the wrong number of arguments.
  *
  * NOTE
  *    I _think_ this function is intended to work around the Pentium
  *    fdiv bug.
  */
-void _adj_fdivr_m16i(void)
+void __stdcall _adj_fdivr_m16i( short arg )
 {
   TRACE("(): stub\n");
 }
 
 /***********************************************************************
  *             _adj_fdivr_m32 (MSVCRT.@)
- * FIXME
- *    This function is likely to have the wrong number of arguments.
  *
  * NOTE
  *    I _think_ this function is intended to work around the Pentium
  *    fdiv bug.
  */
-void _adj_fdivr_m32(void)
+void __stdcall _adj_fdivr_m32( unsigned int arg )
 {
   TRACE("(): stub\n");
 }
 
 /***********************************************************************
  *             _adj_fdivr_m32i (MSVCRT.@)
- * FIXME
- *    This function is likely to have the wrong number of arguments.
  *
  * NOTE
  *    I _think_ this function is intended to work around the Pentium
  *    fdiv bug.
  */
-void _adj_fdivr_m32i(void)
+void __stdcall _adj_fdivr_m32i( int arg )
 {
   TRACE("(): stub\n");
 }
 
 /***********************************************************************
  *             _adj_fdivr_m64 (MSVCRT.@)
- * FIXME
- *    This function is likely to have the wrong number of arguments.
  *
  * NOTE
  *    I _think_ this function is intended to work around the Pentium
  *    fdiv bug.
  */
-void _adj_fdivr_m64(void)
+void __stdcall _adj_fdivr_m64( unsigned __int64 arg )
 {
   TRACE("(): stub\n");
 }
index 1e37b7e..445726e 100644 (file)
 @ cdecl _abnormal_termination()
 @ cdecl _access(str long)
 @ extern _acmdln MSVCRT__acmdln
-@ cdecl _adj_fdiv_m16i()
-@ cdecl _adj_fdiv_m32()
-@ cdecl _adj_fdiv_m32i()
-@ cdecl _adj_fdiv_m64()
+@ stdcall _adj_fdiv_m16i(long)
+@ stdcall _adj_fdiv_m32(long)
+@ stdcall _adj_fdiv_m32i(long)
+@ stdcall _adj_fdiv_m64(long long)
 @ cdecl _adj_fdiv_r()
-@ cdecl _adj_fdivr_m16i()
-@ cdecl _adj_fdivr_m32()
-@ cdecl _adj_fdivr_m32i()
-@ cdecl _adj_fdivr_m64()
+@ stdcall _adj_fdivr_m16i(long)
+@ stdcall _adj_fdivr_m32(long)
+@ stdcall _adj_fdivr_m32i(long)
+@ stdcall _adj_fdivr_m64(long long)
 @ cdecl _adj_fpatan()
 @ cdecl _adj_fprem()
 @ cdecl _adj_fprem1()
index 22e1d68..510bec8 100644 (file)
 @ cdecl _abnormal_termination() msvcrt._abnormal_termination
 @ cdecl _access(str long) msvcrt._access
 @ extern _acmdln msvcrt._acmdln
-@ cdecl _adj_fdiv_m16i() msvcrt._adj_fdiv_m16i
-@ cdecl _adj_fdiv_m32() msvcrt._adj_fdiv_m32
-@ cdecl _adj_fdiv_m32i() msvcrt._adj_fdiv_m32i
-@ cdecl _adj_fdiv_m64() msvcrt._adj_fdiv_m64
+@ stdcall _adj_fdiv_m16i(long) msvcrt._adj_fdiv_m16i
+@ stdcall _adj_fdiv_m32(long) msvcrt._adj_fdiv_m32
+@ stdcall _adj_fdiv_m32i(long) msvcrt._adj_fdiv_m32i
+@ stdcall _adj_fdiv_m64(long long) msvcrt._adj_fdiv_m64
 @ cdecl _adj_fdiv_r() msvcrt._adj_fdiv_r
-@ cdecl _adj_fdivr_m16i() msvcrt._adj_fdivr_m16i
-@ cdecl _adj_fdivr_m32() msvcrt._adj_fdivr_m32
-@ cdecl _adj_fdivr_m32i() msvcrt._adj_fdivr_m32i
-@ cdecl _adj_fdivr_m64() msvcrt._adj_fdivr_m64
+@ stdcall _adj_fdivr_m16i(long) msvcrt._adj_fdivr_m16i
+@ stdcall _adj_fdivr_m32(long) msvcrt._adj_fdivr_m32
+@ stdcall _adj_fdivr_m32i(long) msvcrt._adj_fdivr_m32i
+@ stdcall _adj_fdivr_m64(long long) msvcrt._adj_fdivr_m64
 @ cdecl _adj_fpatan() msvcrt._adj_fpatan
 @ cdecl _adj_fprem() msvcrt._adj_fprem
 @ cdecl _adj_fprem1() msvcrt._adj_fprem1
index fbe76d2..792f73a 100644 (file)
 @ cdecl _abnormal_termination() msvcrt._abnormal_termination
 @ cdecl _access(str long) msvcrt._access
 @ extern _acmdln msvcrt._acmdln
-@ cdecl _adj_fdiv_m16i() msvcrt._adj_fdiv_m16i
-@ cdecl _adj_fdiv_m32() msvcrt._adj_fdiv_m32
-@ cdecl _adj_fdiv_m32i() msvcrt._adj_fdiv_m32i
-@ cdecl _adj_fdiv_m64() msvcrt._adj_fdiv_m64
+@ stdcall _adj_fdiv_m16i(long) msvcrt._adj_fdiv_m16i
+@ stdcall _adj_fdiv_m32(long) msvcrt._adj_fdiv_m32
+@ stdcall _adj_fdiv_m32i(long) msvcrt._adj_fdiv_m32i
+@ stdcall _adj_fdiv_m64(long long) msvcrt._adj_fdiv_m64
 @ cdecl _adj_fdiv_r() msvcrt._adj_fdiv_r
-@ cdecl _adj_fdivr_m16i() msvcrt._adj_fdivr_m16i
-@ cdecl _adj_fdivr_m32() msvcrt._adj_fdivr_m32
-@ cdecl _adj_fdivr_m32i() msvcrt._adj_fdivr_m32i
-@ cdecl _adj_fdivr_m64() msvcrt._adj_fdivr_m64
+@ stdcall _adj_fdivr_m16i(long) msvcrt._adj_fdivr_m16i
+@ stdcall _adj_fdivr_m32(long) msvcrt._adj_fdivr_m32
+@ stdcall _adj_fdivr_m32i(long) msvcrt._adj_fdivr_m32i
+@ stdcall _adj_fdivr_m64(long long) msvcrt._adj_fdivr_m64
 @ cdecl _adj_fpatan() msvcrt._adj_fpatan
 @ cdecl _adj_fprem() msvcrt._adj_fprem
 @ cdecl _adj_fprem1() msvcrt._adj_fprem1
index 42b2dd9..89874ac 100644 (file)
 @ cdecl _abnormal_termination() msvcrt._abnormal_termination
 @ cdecl _access(str long) msvcrt._access
 @ extern _acmdln msvcrt._acmdln
-@ cdecl _adj_fdiv_m16i() msvcrt._adj_fdiv_m16i
-@ cdecl _adj_fdiv_m32() msvcrt._adj_fdiv_m32
-@ cdecl _adj_fdiv_m32i() msvcrt._adj_fdiv_m32i
-@ cdecl _adj_fdiv_m64() msvcrt._adj_fdiv_m64
+@ stdcall _adj_fdiv_m16i(long) msvcrt._adj_fdiv_m16i
+@ stdcall _adj_fdiv_m32(long) msvcrt._adj_fdiv_m32
+@ stdcall _adj_fdiv_m32i(long) msvcrt._adj_fdiv_m32i
+@ stdcall _adj_fdiv_m64(long long) msvcrt._adj_fdiv_m64
 @ cdecl _adj_fdiv_r() msvcrt._adj_fdiv_r
-@ cdecl _adj_fdivr_m16i() msvcrt._adj_fdivr_m16i
-@ cdecl _adj_fdivr_m32() msvcrt._adj_fdivr_m32
-@ cdecl _adj_fdivr_m32i() msvcrt._adj_fdivr_m32i
-@ cdecl _adj_fdivr_m64() msvcrt._adj_fdivr_m64
+@ stdcall _adj_fdivr_m16i(long) msvcrt._adj_fdivr_m16i
+@ stdcall _adj_fdivr_m32(long) msvcrt._adj_fdivr_m32
+@ stdcall _adj_fdivr_m32i(long) msvcrt._adj_fdivr_m32i
+@ stdcall _adj_fdivr_m64(long long) msvcrt._adj_fdivr_m64
 @ cdecl _adj_fpatan() msvcrt._adj_fpatan
 @ cdecl _adj_fprem() msvcrt._adj_fprem
 @ cdecl _adj_fprem1() msvcrt._adj_fprem1