Branimir Karadžić 7 سال پیش
والد
کامیت
e0b537c5af
1فایلهای تغییر یافته به همراه3 افزوده شده و 1 حذف شده
  1. 3 1
      src/crtnone.cpp

+ 3 - 1
src/crtnone.cpp

@@ -138,7 +138,7 @@ extern "C" double fabs(double _x)
 
 extern "C" double ldexp(double _x, int _exp)
 {
-	return ldexp(float(_x), _exp);
+	return bx::ldexp(float(_x), _exp);
 }
 
 extern "C" float expf(float _x)
@@ -454,6 +454,8 @@ extern "C" int unsetenv(const char* _name)
 	return -1;
 }
 
+typedef int64_t time_t;
+
 extern "C" time_t time(time_t* _arg)
 {
 	BX_UNUSED(_arg);