mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
17 lines
353 B
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);
|
|
}
|