/*=====================================ModF=====================================
**
==============================================================================*/
-FCIMPL2_VV(double, COMDouble::ModF, double x, double* intptr)
+FCIMPL2_VI(double, COMDouble::ModF, double x, double* intptr)
FCALL_CONTRACT;
return (double)modf(x, intptr);
/*=====================================ModF=====================================
**
==============================================================================*/
-FCIMPL2_VV(float, COMSingle::ModF, float x, float* intptr)
+FCIMPL2_VI(float, COMSingle::ModF, float x, float* intptr)
FCALL_CONTRACT;
return (float)modff(x, intptr);
FCDECL2_VV(static double, FMod, double x, double y);
FCDECL1_V(static double, Log, double x);
FCDECL1_V(static double, Log10, double x);
- FCDECL2_VV(static double, ModF, double x, double* intptr);
+ FCDECL2_VI(static double, ModF, double x, double* intptr);
FCDECL2_VV(static double, Pow, double x, double y);
FCDECL1_V(static double, Sin, double x);
FCDECL1_V(static double, Sinh, double x);
FCDECL2_VV(static float, FMod, float x, float y);
FCDECL1_V(static float, Log, float x);
FCDECL1_V(static float, Log10, float x);
- FCDECL2_VV(static float, ModF, float x, float* intptr);
+ FCDECL2_VI(static float, ModF, float x, float* intptr);
FCDECL2_VV(static float, Pow, float x, float y);
FCDECL1_V(static float, Sin, float x);
FCDECL1_V(static float, Sinh, float x);