Ejemplo n.º 1
0
jdouble fastiva_vm_StrictMath_C$__pow(jdouble a, jdouble b) {
#ifdef _WIN32    
    FASTIVA_NOT_IMPL();
    return 0;
#else
    return ieee_pow(a,b);
#endif
}
static jdouble StrictMath_pow(JNIEnv*, jclass, jdouble a, jdouble b) {
    return ieee_pow(a,b);
}