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