]> pd.if.org Git - pdclib/blob - functions/math/sin.c
27ad651aa603db50f92d8bb665d522b2d5e2dd36
[pdclib] / functions / math / sin.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 sin( double x ) { /* TODO */ };
9 float sinf( float x ) { /* TODO */ };
10 long double sinl( long double x ) { /* TODO */ };