]> pd.if.org Git - pdclib/blob - functions/math/tan.c
1f539330c59a6203a7c3fa7d500670960acffde3
[pdclib] / functions / math / tan.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 tan( double x ) { /* TODO */ };
9 float tanf( float x ) { /* TODO */ };
10 long double tanl( long double x ) { /* TODO */ };