X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fmath%2Fcbrt.c;h=12fc59e3c4493cf93e2f8db44636ed06817d95a1;hb=c8f799d852e3698468a78954d82588e841cc0b70;hp=86ef6906314ebf8cdac7f38ad747e2e1a90db5ce;hpb=e5456e3c2697c4e17fc9aa3439f2e305517b4d96;p=pdclib.old diff --git a/functions/math/cbrt.c b/functions/math/cbrt.c index 86ef690..12fc59e 100644 --- a/functions/math/cbrt.c +++ b/functions/math/cbrt.c @@ -1,18 +1,9 @@ -// ---------------------------------------------------------------------------- -// $Id$ -// ---------------------------------------------------------------------------- -// Public Domain C Library - http://pdclib.sourceforge.net -// This code is Public Domain. Use, modify, and redistribute at will. -// ---------------------------------------------------------------------------- - -// ---------------------------------------------------------------------------- -// C++ - -float cbrt( float x ) { /* TODO */ }; -long double cbrt( long double x ) { /* TODO */ }; - -// ---------------------------------------------------------------------------- -// Standard C +/* ---------------------------------------------------------------------------- + * $Id$ + * ---------------------------------------------------------------------------- + * Public Domain C Library - http://pdclib.sourceforge.net + * This code is Public Domain. Use, modify, and redistribute at will. + * --------------------------------------------------------------------------*/ double cbrt( double x ) { /* TODO */ };