mirror of
https://github.com/ptitSeb/box64.git
synced 2025-05-09 00:21:32 +08:00
7 lines
83 B
C
7 lines
83 B
C
#include <math.h>
|
|
|
|
double __cdecl ldexp(double x, int n)
|
|
{
|
|
return scalbn(x, n);
|
|
}
|