X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fmath%2Ftan.c;h=4d2dc4e232144784498007d8e43486167d8850a7;hb=1d9d92ba957a0b8307c9a65c35867fde68e6533b;hp=1ed27888dd779f0ba6a6040af38ca53586238cc9;hpb=34893ecc2200dc7017c36a54cb6c5f4c2378b5ec;p=pdclib diff --git a/functions/math/tan.c b/functions/math/tan.c index 1ed2788..4d2dc4e 100644 --- a/functions/math/tan.c +++ b/functions/math/tan.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 tan( float x ) { /* TODO */ }; -long double tan( 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 tan( double x ) { /* TODO */ }; float tanf( float x ) { /* TODO */ };