1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-05-11 13:27:47 +00:00
reactos/sdk/lib/crt/float/scalb.c

17 lines
353 B
C

/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
* FILE: lib/sdk/crt/float/scalb.c
* PURPOSE: Floating-point number scaling
* PROGRAMER: Pierre Schweitzer (pierre@reactos.org)
*/
#include <precomp.h>
/*
* @implemented
*/
double _scalb(double x, long exp)
{
return ldexp(x, exp);
}