X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=functions%2Fmath%2Fcos.c;h=333e114479aa07f8e6f5c766dc09577fb2a809bb;hb=758f3c180e9f4548d0834dadfe3d126ca04be4f9;hp=3e3ce0d72d2c696d192e5cb39ab5fe8ef61a1ad6;hpb=d954dee1f991f0bc017ac65c4203c36c838abb1f;p=fw%2Fpdclib diff --git a/functions/math/cos.c b/functions/math/cos.c index 3e3ce0d..333e114 100644 --- a/functions/math/cos.c +++ b/functions/math/cos.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 cos( float x ) { /* TODO */ }; -long double cos( 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 cos( double x ) { /* TODO */ }; float cosf( float x ) { /* TODO */ };