X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fcomplex%2Fcabs.c;h=2d74c2c3f6ced2740b20918a39cbeea3756ce5d0;hb=refs%2Ftags%2FOLD;hp=a471fda11feba5752540d85123049229d0cf2bee;hpb=34893ecc2200dc7017c36a54cb6c5f4c2378b5ec;p=pdclib diff --git a/functions/complex/cabs.c b/functions/complex/cabs.c index a471fda..2d74c2c 100644 --- a/functions/complex/cabs.c +++ b/functions/complex/cabs.c @@ -1,22 +1,9 @@ -// ---------------------------------------------------------------------------- -// $Id$ -// ---------------------------------------------------------------------------- -// Public Domain C Library - http://pdclib.sourceforge.net -// This code is Public Domain. Use, modify, and redistribute at will. -// ---------------------------------------------------------------------------- - -// ---------------------------------------------------------------------------- -// C++ - -double abs( double _Complex x ) { /* TODO */ }; -float abs( float _Complex x ) { /* TODO */ }; -long double abs( long double _Complex x ) { /* TODO */ }; -double fabs( double _Complex x ) { /* TODO */ }; -float fabs( float _Complex x ) { /* TODO */ }; -long double fabs( 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 cabs( double _Complex x ) { /* TODO */ }; float cabsf( float _Complex x ) { /* TODO */ };