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 */ 14 double _scalb(double x, long exp) 15 { 16 return ldexp(x, exp); 17 } 18