jdouble fastiva_vm_StrictMath_C$__floor(jdouble a) { #ifdef _WIN32 FASTIVA_NOT_IMPL(); return 0; #else return ieee_floor(a); #endif }
static jdouble StrictMath_floor(JNIEnv*, jclass, jdouble a) { return ieee_floor(a); }