X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fmath%2Fatan2.c;h=29ebc6f6d53eeeac8a03e9e6d4951afa8811d4c6;hb=08bc962a1af74ae105cca90328b2f28fb483f04f;hp=540f7ea645c3c0b7fcfc25e57fe7a916a427f8c3;hpb=dcc8a8e99f69e090a03b7b868443addbc0817820;p=pdclib.old 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 */ };