X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fmath%2Fpow.c;h=776b46f2a67432cde61c5b343b5fbd13a66cf14c;hp=ad4639ee33f30f5605ca4acfc763e22313e72da9;hb=1d9d92ba957a0b8307c9a65c35867fde68e6533b;hpb=34893ecc2200dc7017c36a54cb6c5f4c2378b5ec diff --git a/functions/math/pow.c b/functions/math/pow.c index ad4639e..776b46f 100644 --- a/functions/math/pow.c +++ b/functions/math/pow.c @@ -1,21 +1,9 @@ -// ---------------------------------------------------------------------------- -// $Id$ -// ---------------------------------------------------------------------------- -// Public Domain C Library - http://pdclib.sourceforge.net -// This code is Public Domain. Use, modify, and redistribute at will. -// ---------------------------------------------------------------------------- - -// ---------------------------------------------------------------------------- -// C++ - -float pow( float x, float y ) { /* TODO */ }; -long double pow( long double x, long double y ) { /* TODO */ }; -double pow( double x, int y ) { /* TODO */ }; -float pow( float x, int y ) { /* TODO */ }; -long double pow( long double x, int y ) { /* TODO */ }; - -// ---------------------------------------------------------------------------- -// Standard C +/* ---------------------------------------------------------------------------- + * $Id$ + * ---------------------------------------------------------------------------- + * Public Domain C Library - http://pdclib.sourceforge.net + * This code is Public Domain. Use, modify, and redistribute at will. + * --------------------------------------------------------------------------*/ double pow( double x, double y ) { /* TODO */ }; float powf( float x, float y ) { /* TODO */ };