]> pd.if.org Git - pdclib/blob - functions/math/sin.c
Added template implementation files.
[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 // ----------------------------------------------------------------------------
9 // C++
10
11 float sin( float x ) { /* TODO */ };
12 long double sin( long double x ) { /* TODO */ };
13
14 // ----------------------------------------------------------------------------
15 // Standard C
16
17 double sin( double x ) { /* TODO */ };
18 float sinf( float x ) { /* TODO */ };
19 long double sinl( long double x ) { /* TODO */ };