mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-17 20:52:37 +01:00
Cleanup.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user