ReactOS 0.4.15-dev-7953-g1f49173
scalb.c
Go to the documentation of this file.
1/*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS system libraries
4 * FILE: lib/sdk/crt/float/scalb.c
5 * PURPOSE: Floating-point number scaling
6 * PROGRAMER: Pierre Schweitzer (pierre@reactos.org)
7 */
8
9#include <precomp.h>
10
11/*
12 * @implemented
13 */
14double _scalb(double x, long exp)
15{
16 return ldexp(x, exp);
17}
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
_Check_return_ _CRTIMP double __cdecl ldexp(_In_ double x, _In_ int y)
DWORD exp
Definition: msg.c:16058
double _scalb(double x, long exp)
Definition: scalb.c:14