]> pd.if.org Git - pdclib/blobdiff - functions/math/atan2.c
Introducing personalities. Removing C++ function decs / defs.
[pdclib] / functions / math / atan2.c
index 540f7ea645c3c0b7fcfc25e57fe7a916a427f8c3..29ebc6f6d53eeeac8a03e9e6d4951afa8811d4c6 100644 (file)
@@ -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 */ };