Merge pull request #441 from bigfatbrowncat/cp_fix2

fixed abs() compilation for Android classpath on OSX
This commit is contained in:
Joel Dice 2015-06-24 11:23:42 -06:00
commit 0797665859

View File

@ -8,6 +8,9 @@
There is NO WARRANTY for this software. See license.txt for
details. */
#include <cmath>
using namespace std;
struct JavaVM;
struct _JavaVM;
struct _JNIEnv;
@ -1206,7 +1209,8 @@ extern "C" AVIAN_EXPORT int64_t JNICALL
extern "C" AVIAN_EXPORT int64_t JNICALL
Avian_java_lang_Math_abs__J(Thread*, object, uintptr_t* arguments)
{
return llabs(arguments[0]);
int64_t v; memcpy(&v, arguments, 8);
return llabs(v);
}
extern "C" AVIAN_EXPORT int64_t JNICALL