Author: tkreuzer Date: Fri Jan 28 17:44:30 2011 New Revision: 50537 URL: http://svn.reactos.org/svn/reactos?rev=50537&view=rev Log: [CRT] add a single prototype, instead of including math.h
Modified: branches/cmake-bringup/lib/sdk/crt/math/powf.c Modified: branches/cmake-bringup/lib/sdk/crt/math/powf.c URL: http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/sdk/crt/math/powf.c?rev=50537&r1=50536&r2=50537&view=diff ============================================================================== --- branches/cmake-bringup/lib/sdk/crt/math/powf.c [iso-8859-1] (original) +++ branches/cmake-bringup/lib/sdk/crt/math/powf.c [iso-8859-1] Fri Jan 28 17:44:30 2011 @@ -3,7 +3,8 @@ * This file is part of the w64 mingw-runtime package. * No warranty is given; refer to the file DISCLAIMER.PD within this package. */ -#include <math.h> + +double __cdecl pow(double x, double y); float powf(float x, float y) {