Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenpowl.c
Go to the documentation of this file.
00001 /* Math functions for i387. 00002 Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. 00003 This file is part of the GNU C Library. 00004 Contributed by John C. Bowman <bowman@ipp-garching.mpg.de>, 1995. 00005 00006 The GNU C Library is free software; you can redistribute it and/or 00007 modify it under the terms of the GNU Lesser General Public 00008 License as published by the Free Software Foundation; either 00009 version 2.1 of the License, or (at your option) any later version. 00010 00011 The GNU C Library is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 Lesser General Public License for more details. 00015 00016 You should have received a copy of the GNU Lesser General Public 00017 License along with the GNU C Library; if not, write to the Free 00018 Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00019 Boston, MA 02110-1301, USA. 00020 */ 00021 00022 #include <math.h> 00023 00024 /* 00025 * @implemented 00026 */ 00027 00028 long double powl (long double __x,long double __y) 00029 { 00030 return pow(__x,__y/2)*pow(__x,__y/2); 00031 } Generated on Thu May 24 2012 04:36:57 for ReactOS by
1.7.6.1
|