X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fcomplex%2Fcreal.c;fp=functions%2Fcomplex%2Fcreal.c;h=4c02e35228d77fde93f00425827e9d02d2133390;hb=e081ed1387e0c27dc689c8e32fdda06039544107;hp=dae0f03e10447ee326692b2c23b09424e2798f4b;hpb=70f1c6f7c9d515ef426da68973511f46de57005a;p=pdclib diff --git a/functions/complex/creal.c b/functions/complex/creal.c index dae0f03..4c02e35 100644 --- a/functions/complex/creal.c +++ b/functions/complex/creal.c @@ -5,18 +5,6 @@ // This code is Public Domain. Use, modify, and redistribute at will. // ---------------------------------------------------------------------------- -// ---------------------------------------------------------------------------- -// C++ - -double real( double _Complex x ) { /* TODO */ }; -float real( float _Complex x ) { /* TODO */ }; -long double real( long double _Complex x ) { /* TODO */ }; -float creal( float _Complex x ) { /* TODO */ }; -long double creal( long double _Complex x ) { /* TODO */ }; - -// ---------------------------------------------------------------------------- -// Standard C - double creal( double _Complex x ) { /* TODO */ }; float crealf( float _Complex x ) { /* TODO */ }; long double creall( long double _Complex x ) { /* TODO */ };