X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fmath%2Fatan2.c;fp=functions%2Fmath%2Fatan2.c;h=29ebc6f6d53eeeac8a03e9e6d4951afa8811d4c6;hp=540f7ea645c3c0b7fcfc25e57fe7a916a427f8c3;hb=e081ed1387e0c27dc689c8e32fdda06039544107;hpb=70f1c6f7c9d515ef426da68973511f46de57005a diff --git a/functions/math/atan2.c b/functions/math/atan2.c index 540f7ea..29ebc6f 100644 --- a/functions/math/atan2.c +++ b/functions/math/atan2.c @@ -5,15 +5,6 @@ // This code is Public Domain. Use, modify, and redistribute at will. // ---------------------------------------------------------------------------- -// ---------------------------------------------------------------------------- -// C++ - -float atan2( float y, float x ) { /* TODO */ }; -long double atan2( long double y, long double x ) { /* TODO */ }; - -// ---------------------------------------------------------------------------- -// Standard C - double atan2( double y, double x ) { /* TODO */ }; float atan2f( float y, float x ) { /* TODO */ }; long double atan2l( long double y, long double x ) { /* TODO */ };