]> pd.if.org Git - pdclib/blob - functions/math/atan2.c
29ebc6f6d53eeeac8a03e9e6d4951afa8811d4c6
[pdclib] / functions / math / atan2.c
1 // ----------------------------------------------------------------------------
2 // $Id$
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
7
8 double atan2( double y, double x ) { /* TODO */ };
9 float atan2f( float y, float x ) { /* TODO */ };
10 long double atan2l( long double y, long double x ) { /* TODO */ };