]> pd.if.org Git - pdclib/blobdiff - functions/math/atan2.c
Added template implementation files.
[pdclib] / functions / math / atan2.c
diff --git a/functions/math/atan2.c b/functions/math/atan2.c
new file mode 100644 (file)
index 0000000..540f7ea
--- /dev/null
@@ -0,0 +1,19 @@
+// ----------------------------------------------------------------------------
+// $Id$
+// ----------------------------------------------------------------------------
+// Public Domain C Library - http://pdclib.sourceforge.net
+// 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 */ };