X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fcomplex%2Fctan.c;h=958fba38fc27baa53657aca72d297faa5d2f2ac6;hp=d735cb8e06daf23f7b42231be7d21a2a3605ba3e;hb=1d9d92ba957a0b8307c9a65c35867fde68e6533b;hpb=34893ecc2200dc7017c36a54cb6c5f4c2378b5ec diff --git a/functions/complex/ctan.c b/functions/complex/ctan.c index d735cb8..958fba3 100644 --- a/functions/complex/ctan.c +++ b/functions/complex/ctan.c @@ -1,19 +1,9 @@ -// ---------------------------------------------------------------------------- -// $Id$ -// ---------------------------------------------------------------------------- -// Public Domain C Library - http://pdclib.sourceforge.net -// This code is Public Domain. Use, modify, and redistribute at will. -// ---------------------------------------------------------------------------- - -// ---------------------------------------------------------------------------- -// C++ - -double _Complex tan( double _Complex x ) { /* TODO */ }; -float _Complex tan( float _Complex x ) { /* TODO */ }; -long double _Complex tan( long double _Complex 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 _Complex ctan( double _Complex x ) { /* TODO */ }; float _Complex ctanf( float _Complex x ) { /* TODO */ };