Exemplo n.º 1
0
jdouble fastiva_vm_StrictMath_C$__expm1(jdouble a) {
#ifdef _WIN32    
    FASTIVA_NOT_IMPL();
    return 0;
#else
    return ieee_expm1(a);
#endif
}
static jdouble StrictMath_expm1(JNIEnv*, jclass, jdouble a) {
    return ieee_expm1(a);
}